Here is the code that I just don't get what I'm missing. With this code in my function, anything below it does not get processed...
if (document.form1.Ed_HS_Graduate[1].checked && !document.form1.Ed_Ged[0].checked && !document.form1.Ed_Ged[1].checked)
{
alert("Please tell us if you have your GED or not."
;
document.form1.Ed_Ged[0].focus();
return false;
}
Any help would be great!
Thanks,
John Axsom
if (document.form1.Ed_HS_Graduate[1].checked && !document.form1.Ed_Ged[0].checked && !document.form1.Ed_Ged[1].checked)
{
alert("Please tell us if you have your GED or not."
document.form1.Ed_Ged[0].focus();
return false;
}
Any help would be great!
Thanks,
John Axsom