Disable autocorrect on an HTML input element
The autocorrect
attribute on HTML input elements can be set to off
in order to disable auto correction features on many devices.
<label for="Textbox">iOS will not autocorrect input in this element</label>
<input type="text" id="Textbox" name="Textbox" autocorrect="off" />