Skip to content

Instantly share code, notes, and snippets.

@kublaj
Forked from jhafner/mobile-form.html
Created May 31, 2016 10:56
Show Gist options
  • Save kublaj/cef37b9d9b59e7d4f9b53df28a5c386e to your computer and use it in GitHub Desktop.
Save kublaj/cef37b9d9b59e7d4f9b53df28a5c386e 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