Not a Member Yet,
Click here to Register

ID: 480
Viewed: 3786
Added: Sep 03, 2002
Version:
Snippet uploaded by: Dr. Web
Written By: Dr. Web
Demo: Sorry, no demo



User Rated at: 0 Stars
Rate This:

Thank you for your vote. Please wait...

It appears you already voted for this snippet

It appears your vote value was empty

Limits a user to only selecting two checkboxes

<!---Head--->
<SCRIPT LANGUAGE="javascript">

function KeepCount() {

var NewCount = 0

if (document.joe.dog.checked)
{NewCount = NewCount + 1}

if (document.joe.cat.checked)
{NewCount = NewCount + 1}

if (document.joe.pig.checked)
{NewCount = NewCount + 1}

if (document.joe.ferret.checked)
{NewCount = NewCount + 1}

if (document.joe.hampster.checked)
{NewCount = NewCount + 1}

if (NewCount == 3)
{
alert('Pick Just Two Please')
document.joe; return false;
}
}
</SCRIPT>

<!---Body--->


 <FORM NAME="joe">
<b>Pick Only Two Please!</b>

<INPUT TYPE="checkbox" NAME="dog"
onClick="retu\r\n KeepCount()"> Dog

<INPUT TYPE="checkbox" NAME="cat"
onClick="retu\r\n KeepCount()"> Cat

<INPUT TYPE="checkbox" NAME="pig"
onClick="retu\r\n KeepCount()"> Pig

<INPUT TYPE="checkbox" NAME="ferret"
onClick="retu\r\n KeepCount()"> Ferret

<INPUT TYPE="checkbox" NAME="hampster"
onClick="retu\r\n KeepCount()"> Hampster

</FORM>

</body>
</html>


No Comments to show

Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.


Replying to a Comment...


Adding your comment. Please wait...

Thanks for adding your comment!. After further review it will be added.

There was a problem adding your comment. Please try again.

Please complete all the fields in the form before sending.

© 2002 - 2024 snippetlibrary.com All Rights Reserved. Conditions
Do NOT follow this link or you will be banned from the site!