benniesanders
Programmer
Greetings, I have a lengthy user form and we've noticed some of the site visitors are hitting the spacebar for one of the fields. I have a form validator in place, but if they hit the space bar, it moves on to the next field.
Here's a snippet of my validation code for the rogue field:
Is there a way I can combat this?
many thanks. Bennie
Here's a snippet of my validation code for the rogue field:
Code:
if (myForm.hschool.value == ""){
alert("High school name is required");
myForm.hschool.focus();
return false;}
Is there a way I can combat this?
many thanks. Bennie