Hi,
I have a required validation enabled for the following field in the original form:
The form does not display the required message if the field is left blank.
I rearrange to the following:
And the validation works after simply switching the name. Any comments?
I have a required validation enabled for the following field in the original form:
<input class="inputbox" maxlength="100" size="40" name="name" type="text">
The form does not display the required message if the field is left blank.
I rearrange to the following:
<input name="name" class="inputbox" maxlength="100" size="40" type="text">
And the validation works after simply switching the name. Any comments?