Force Numeric Keyboard for Mobile Device

divided picture divided · Jan 20, 2011 · Viewed 17.6k times · Source

This is not a "mobile" website. It is regular HTML/CSS. Is there a way I can force mobile devices to popup with the numeric keyboard when they focus on my textboxes?

Answer

awayken picture awayken · Aug 1, 2013

We've had the best luck with using a combination of type="number" and pattern="\d*". We've seen success on iOS and Android devices, although I don't have a list of OS versions to share here.

<input type="number" pattern="\d*" name="year">