1
Hello, I need to define that the minimum number inserted in an input of type text is the number 5, I tried as follows:
<input type="text" name="someName" id="someId" required="required" pattern="(([1-9]?[0-9]?[5-9]?)|([0-9]?[5-9]?)|([5-9]?))"/>
http://jsfiddle.net/hiperportal/Qa5xS/2/
However it is not working, only works if typed 04, and not only 4.
Note: minimum number 5, maximum number 999.
Thank you.
Thank you, it worked perfectly. I thank you for your explanations.
– Wesley