Useful iPhone / Android Web App Tags

Home Screen ICON

<link rel=”apple-touch-icon-precomposed” href=”icon.png”/>

Disable Zoom in and out

<meta name=”viewport” content=”width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;”/>

Input Filter

<input type="text"
       autocorrect="off"   // Only works for iPhone
       autocapitalize="on" // Only works for iPhone
       placeholder="Put in some text here" />

Leave a Reply