0
HTML fixing number of digits
how to restrict number of digits to 6 in type number.. max length is only working for text
3 Antworten
+ 3
https://www.w3schools.com/tags/att_input_type_number.asp
Try max-
<input type="number" id="quantity" name="quantity" max="999999"><br><br>
+ 2
Where is your code . Share it with us so that we can help you
+ 1
no.. maxlength is only working for text not for number @ore