Hi all,
Can i know how to do the checkbox validation........
i used the code below but its not validating.....
var val;
for(i=0;i<3;i++)
{
if(form2.elements['contype[]'][i].checked)
val=1;
}
if(val==0)
{
alert("Select type of your Contract")
return false;
}