iPhone web applications and specific input types - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T14:37:53Z http://stackoverflow.com/feeds/question/593245 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/593245/iphone-web-applications-and-specific-input-types 2 iPhone web applications and specific input types ceejayoz 2009-02-27T01:50:30Z 2009-11-18T04:40:03Z <p>I remember seeing a tutorial a while back on this but am unable to re-Google it.</p> <p>Supposedly there is a way to get Safari on the iPhone to give keyboards other than the default. It went something along the lines of this, where certain keywords in the input name attribute triggered it...</p> <p>This would give the default keyboard:</p> <pre><code>&lt;input type="text" name="normal_text" /&gt; </code></pre> <p>This would give the number entry keyboard:</p> <pre><code>&lt;input type="text" name="blah_blah_zip" /&gt; </code></pre> <p>This would give the number entry keyboard:</p> <pre><code>&lt;input type="text" name="blah_blah_email" /&gt; </code></pre> <p>Does anyone know if this is still an available feature, and if so, what the keywords for triggering it are? Thanks!</p> http://stackoverflow.com/questions/593245/iphone-web-applications-and-specific-input-types/593646#593646 3 Answer by August for iPhone web applications and specific input types August 2009-02-27T05:53:09Z 2009-02-27T05:53:09Z <p>This used to be the case, but the functionality was removed in iPhone OS 2.0. There currently is no way to force Mobile Safari to use a specific keyboard.</p> http://stackoverflow.com/questions/593245/iphone-web-applications-and-specific-input-types/1677517#1677517 3 Answer by Gabe Hollombe for iPhone web applications and specific input types Gabe Hollombe 2009-11-05T00:00:54Z 2009-11-05T00:00:54Z <p>The <a href="http://developer.apple.com/safari/library/codinghowtos/Mobile/UserExperience/index.html#CONTROLLING%5FKEYBOARD%5FDISPLAY" rel="nofollow">Safari for iPhone How-To's</a> indicate this is still possible with a different syntax.</p> <pre><code>Text: &lt;input type="text" /&gt; &lt;!-- display a standard keyboard --&gt; Telephone: &lt;input type="tel" /&gt; &lt;!-- display a telephone keypad --&gt; URL: &lt;input type="url" /&gt; &lt;!-- display a URL keyboard --&gt; Email: &lt;input type="email" /&gt; &lt;!-- display an email keyboard --&gt; Zip Code: &lt;input type="text" pattern="[0-9]*" /&gt; &lt;!-- display a numeric keyboard --&gt; </code></pre> http://stackoverflow.com/questions/593245/iphone-web-applications-and-specific-input-types/1753677#1753677 0 Answer by David Thomas for iPhone web applications and specific input types David Thomas 2009-11-18T04:40:03Z 2009-11-18T04:40:03Z <p>On 3GS the mobile safari does display the specific keyboard based on answer 2</p>