How to Turn off Input Field Autocomplete

Learn how to disable the autocomplete feature for input fields.

Turn off Autocomplete

Use the autocomplete attribute to turn off the autocomplete feature for input fields:

Example

<input type="text" autocomplete="off">

Try It Yourself

You can also turn off the autocomplete feature for the entire form:

Example

<form autocomplete="off">

Try It Yourself

Related Pages

Tutorial:HTML formulær

Tutorial:Sådan opretter man automatisk færdiggørelse

Reference Manual:HTML <input> autocomplete egenskab