Skip to content

Instantly share code, notes, and snippets.

@jhafner
Created August 19, 2013 15:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jhafner/6270619 to your computer and use it in GitHub Desktop.
Save jhafner/6270619 to your computer and use it in GitHub Desktop.
Describes HTML5 Attributes for Forms on Mobile Devices
<form id="mobile-form">
<input type="tel" /> <!-- Displays number pad -->
<input type="text" pattern="\d*" novalidate /> <!-- Displays number pad on text fields -->
<input type="email" autocapitalize="off" /> <!-- Displays email input, disables auto-capitalization -->
<input type="text" autocorrect="off" /> <!-- Disables autocorrect -->
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment