How to force keyboard with numbers in mobile website in Android

<input type="number" />
<input type="tel" />

Both of these present the numeric keypad when the input gains focus.

<input type="search" />
shows a normal keyboard with an extra search button

Everything else seems to bring up the standard keyboard.

Leave a Comment