After working on the form validation it seems good and provides lots of features specially including Position Absolute Validation. One thing that is disturbing me here is the validation-attribute "minlength". I have found that the "minlength" attribute does not works if the "required" value is missing.
< .... maxlength="10" minlength="3" type="text">.
In this case the minlength does not work. Adding the required value makes it work i.e.
< .... maxlength="10" minlength="3" type="text" required>.
No comments:
Post a Comment