HTML form autocomplete Attribute

HTML <form> tag : A form with autocomplete on

Definition and Usage

The autocomplete attribute specifies whether a form should have autocomplete on or off.

When autocomplete is on, the browser automatically complete values based on values that the user has entered before.

Tip: It is possible to have autocomplete "on" for the form, and "off" for specific input fields, or vice versa.

Browser Support

The numbers in the table specify the first browser version that fully supports the attribute.

Attribute
autocomplete Yes Yes 4.0 5.2 15.0

Syntax

<form autocomplete="on|off">

Attribute Values

Value Description
on Default. The browser will automatically complete values based on values that the user has entered before
off The user must enter a value into each field for every use. The browser does not automatically complete entries

❮ HTML <form> tag