Firefox Tomorrow

web api instance property

HTMLFormElement: autocomplete property

View on MDN ↗

The autocomplete property of the HTMLFormElement interface indicates whether the value of the form’s controls can be automatically completed by the browser. It reflects the <form> element’s autocomplete attribute.

Value

A string; the value "off" if explicitly set to "off", and otherwise always "on".

Examples

const formElement = document.getElementById("name");
console.log(formElement.autocomplete);

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also