How to Turn Off Auto-Complete for Input Fields
- Previous Page Auto-complete
- Next Page Turn Off Spelling Check
Learn how to disable the auto-complete feature for input fields.
Turn Off Auto-Complete
Use the autocomplete attribute to turn off the auto-complete feature for input fields:
Example
<input type="text" autocomplete="off">
You can also turn off the auto-complete feature for the entire form:
Example
<form autocomplete="off">
Related Pages
Tutorial:HTML Form
Tutorial:How to Create Auto-complete
Reference Manual:HTML <input> autocomplete Attribute
- Previous Page Auto-complete
- Next Page Turn Off Spelling Check