input type 3dnumber 01

Solutions on MaxInterview for input type 3dnumber 01 by the best coders in the world

showing results for - "input type 3dnumber 01"
Guadalupe
11 Apr 2018
1//How to make a number field with always 2 numbers displayed : 01, 02, 03 ...-->
2<input id="" type="number" min="1" max="99" step="1" onchange="if(parseInt(this.value,10)<10)this.value='0'+this.value;" />