up vote 14 down vote favorite
13
share [g+] share [fb]

I remember seeing a tutorial a while back on this but am unable to re-Google it.

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...

This would give the default keyboard:

<input type="text" name="normal_text" />

This would give the number entry keyboard:

<input type="text" name="blah_blah_zip" />

This would give the number entry keyboard:

<input type="text" name="blah_blah_email" />

Does anyone know if this is still an available feature, and if so, what the keywords for triggering it are? Thanks!

link|improve this question

feedback

2 Answers

up vote 33 down vote accepted

The Safari for iPhone How-To's indicate this is still possible with a different syntax.

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 -->
link|improve this answer
2  
Looks like that was added in OS 3.1. Sweeeeet! – ceejayoz Nov 5 '09 at 2:21
Note, if you're testing your app in the iPhone Simulator and this doesn't work, make sure the simulator is configured to use OS 3.1 or later! That was my problem. Go to Hardware > Version > 3.1 – Kevin Conner Apr 12 '10 at 15:09
1  
Notice that also type="time" is supported (and some others, I guess), but I found no way to specify the granularity of minutes (some apps use 5-mins steps, but HTML5 step attribute doesn't do the trick). – lapo Jan 5 at 22:11
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.