How to Turn Off Auto-Complete for Input Fields

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">

Try It Yourself

You can also turn off the auto-complete feature for the entire form:

Example

<form autocomplete="off">

Try It Yourself

Related Pages

Tutorial:HTML Form

Tutorial:How to Create Auto-complete

Reference Manual:HTML <input> autocomplete Attribute