I'm working on a mobile phone web app and I have several text fields that could benefit from iPhone's will adjust the keyboard for the user but I'm worried about breaking backwards compatability. What I'm hoping is that browsers/phone that support this can assist the user and other browser will fall back to a standard text field? Is this an acceptable practice? Does it even work?
|
feedback
|
|
Yes, any unsupported type will revert to the 'type=text' format. I found a good page which lists out all the existing input types. I tried looking at it from different browsers, a bit interesting. Don't know if it will help you or not. | |||||
|
feedback
|
|
Browsers will fall back to type="text" when they encounter unsupported input type. So I think it's OK to use type="tel". | |||
|
feedback
|
|
Short answer: yes. As @el.pescado mentions, browsers fall back to | ||||
|
feedback
|
|
FYI: as of march 2012 there is a Safari bug with this. you can find a just a bit more info if you read the last few comments here: https://github.com/jquery/jquery-mobile/issues/2341 you may see "Assertion failed", "(anonymous function)" errors in console. | |||
|
feedback
|