I am writing a web application for the iPad. I know that it is possible to change the type of keyboard displayed when selecting the html input field using:
Text: <input type="text" /> Telephone: <input type="tel" /> URL: <input type="url" /> Email: <input type="email" /> Zip Code: <input type="text" pattern="[0-9]*" />
the problem is that I have to use textarea instead of input . Is it possible to get the same result?
If not: is there a way to change the keyboard label for the ENTER key. Right now the default shortcut is βReturnβ, and I would like to have βSubmitβ (since this is a chat application).
Many thanks!
input ios forms keyboard textarea
Claus
source share