Update: The following input type works as expected:
There are several important things you should keep in mind:
It only works on iPhone OS 3.1 +
The input tag MUST be inside the tag.
In addition, the following tags are worth noting:
<label for="tiTel">Telephone:</label> <input type="tel" id="tiTel"/> <br/> <label for="tiUrl">URL:</label> <input type="url" id="tiUrl"/> <br/> <label for="tiEmail">Email:</label> <input type="email" id="tiEmail"/> <br/> <label for="tiZip">Zip Code:</label> <input type="text" pattern="[0-9]*" id="tiZip"/> <br/>
Jesse
source share