I don't know if what I want is possible.
I have a webview with a form, this form only has a input type text, this is an email, can I use the textEmailAddress property?
<form name ="respuesta">
<input type="text" name="email" value = "">
<br>
<input type=submit value="Siguiente" onClick = "compruebaEmail(document.respuesta.email.value)">
</form>
I want to add this property to "email" field.
Thank you in advance.