Hello, I need to define that the minimum number entered in an input of type text is 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]?))"/>
But it is not working, it only works if you enter 04, not just 4.
Note: minimum number 5, maximum number 999.
Thank you.