Is it possible to set a minimum on a input number field so it's more than 0 but the user can still enter 0.01 for example?
I've tried this but it hasn't worked..
<input required="" name="amount" type="text" min="0.01" value="0.00" />
Is it possible to set a minimum on a input number field so it's more than 0 but the user can still enter 0.01 for example?
I've tried this but it hasn't worked..
<input required="" name="amount" type="text" min="0.01" value="0.00" />
Share
Improve this question
asked Jun 16, 2017 at 13:22
ShaunShaun
8111 gold badge10 silver badges38 bronze badges
4
-
7
input number field ??
type="text"
?? – user7929528 Commented Jun 16, 2017 at 13:24 -
5
use
type="number"
– Dalin Huang Commented Jun 16, 2017 at 13:24 -
1
more than 0
value="0.00"