Reputation: 19463
Sometimes on certain field we need only decimal number to be inserted. How can we get the phone to display numeric keypad instead of normal keyboard to enable user easier enter the numeric input?
Upvotes: 0
Views: 1511
Reputation:
For a numeric keyboard, you need to set its type to number
<input type="number"/>
Upvotes: 1