Is there a way to turn off autocorrect and autocapitalize on input fields? Safari on the iPad defaults to this behavior. This can be turned off programatically via setting attributes on the input tag:
I looked for something similar to setBrowserSpellCheck(), and didn't find anything.
Thanks,
Chris
Code:
<input type="text" name="some_name" autocorrect="off" autocapitalize="off"></input>
Thanks,
Chris
Comment