iPhone web applications and specific input types - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T14:37:53Zhttp://stackoverflow.com/feeds/question/593245http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/593245/iphone-web-applications-and-specific-input-types2iPhone web applications and specific input typesceejayoz2009-02-27T01:50:30Z2009-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><input type="text" name="normal_text" />
</code></pre>
<p>This would give the number entry keyboard:</p>
<pre><code><input type="text" name="blah_blah_zip" />
</code></pre>
<p>This would give the number entry keyboard:</p>
<pre><code><input type="text" name="blah_blah_email" />
</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#5936463Answer by August for iPhone web applications and specific input typesAugust2009-02-27T05:53:09Z2009-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#16775173Answer by Gabe Hollombe for iPhone web applications and specific input typesGabe Hollombe2009-11-05T00:00:54Z2009-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: <input type="text" /> <!-- display a standard keyboard -->
Telephone: <input type="tel" /> <!-- display a telephone keypad -->
URL: <input type="url" /> <!-- display a URL keyboard -->
Email: <input type="email" /> <!-- display an email keyboard -->
Zip Code: <input type="text" pattern="[0-9]*" /> <!-- display a numeric keyboard -->
</code></pre>
http://stackoverflow.com/questions/593245/iphone-web-applications-and-specific-input-types/1753677#17536770Answer by David Thomas for iPhone web applications and specific input typesDavid Thomas2009-11-18T04:40:03Z2009-11-18T04:40:03Z<p>On 3GS the mobile safari does display the specific keyboard based on answer 2</p>