html

Disable autocomplete on an HTML input element

The autocomplete attribute on HTML input elements can be set to off in order to disable auto completion features on many devices.

<label for="Textbox">iOS will not autocomplete input in this element</label>
<input type="text" id="Textbox" name="Textbox" autocomplete="off" />

more HTML posts