autocomplete attribute | autocomplete property (Internet Explorer)

Switch View :
ScriptFree
autocomplete attribute | autocomplete property

[This documentation is preliminary and is subject to change.]

Sets or retrieves the status of AutoComplete for an object.

This property is not supported for Metro style apps using JavaScript.

Syntax

HTML<element autocomplete="p" ... >
JavaScript

p = object.autocomplete

Property values

Type: String

off

AutoComplete is disabled.

on

AutoComplete is enabled. Any string other than off enables AutoComplete.

Standards information

There are no standards that apply here.

Remarks

The AutoComplete feature is highlighted in the Using AutoComplete in HTML Forms overview.

When AutoComplete is enabled, suggestions are provided for the VALUE of a text field. Suggested values are mapped values based on the NAME attribute or vCard schema specified by the VCARD_NAME attribute.

If AutoComplete is disabled, values are not stored and suggested values are not presented.

Values in input type=password elements can be mapped for AutoComplete; however, the ability to store this information can be disabled in the browser, and the user is prompted for a confirmation before the value is stored.

Information provided by the AutoComplete feature is not exposed to the object model, and is not visible to a Web page until the user selects one of the suggestions as a value for the text field.

This attribute is not supported in HTML Applications (HTAs).

Examples

This example uses the AUTOCOMPLETE attribute to disable the AutoComplete feature.


<INPUT TYPE="password" AUTOCOMPLETE="off">

 

 

Build date: 3/8/2012