Seems the minlength attribute for an <input> field doesn't work.
Is there any other attribute in HTML5 with the help of which I can set minimal length of value for fields?
|
Seems the Is there any other attribute in HTML5 with the help of which I can set minimal length of value for fields? |
|||||||||||||
|
|
You can use the
|
|||||
|
|
minLength attribute (unlike maxLength) does not exist natively in HTML5. However there a some ways to validate a field if it contains less than x characters. An example is given using jQuery at this link : http://docs.jquery.com/Plugins/Validation/Methods/minlength
|
||||
|
|
|
That's because it's not minlength, it's just min="3". They added max despite already having a maxlength for some reason as well. Min does not work on any of the major browsers except for Opera and Chrome so it's pretty much useless. The pattern method above is the best if you want HTML5 browse |
|||||||||
|