I have a series of text boxes on a page, with common names Number
and Scale
:
<input type="text" name="Number">
<input type="text" name="Scale">
I also have my submit button:
<input type="SUBMIT" value="Process Now">
I am using jQuery on my webpage too - is there code that will check all instances of Number
and Scale
and not allow the user to submit until all the text Number
and Scale
text boxes have an entry in them?