As with type="number"
, you specify a max
instead of maxlength
property, which is the maximum possible number possible. So with 4 digits, max
should be 9999
, 5 digits 99999
and so on.
Also if you want to make sure it is a positive number, you could set min="0"
, ensuring positive numbers.