HTML input autocomplete Attribute

The HTML | <input>autocomplete Attribute is used to specify whether the input field has autocompleted and would be on or off. When the autocomplete attribute is set to on the browser will automatically complete the values based on what the user entered before. It works with many input fields such as text, search, URL, email, password, date pickers, range, and color.

Syntax:  

<input autocomplete="on|off">

Attribute Values: 

  • on: It has a default value. It specifies that autocomplete is enabled.
  • off: It specifies that the autocomplete is disabled.

Example: This Example illustrates the use of autocomplete attribute in <input> element. 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML | input autocomplete Attribute
    </title>
</head>
 
<body style="text-align:center;">
 
    <h1>w3wiki</h1>
    <h2>
        HTML | input autocomplete Attribute
    </h2>
    <form id="myBeginner">
        <input type="text"
               id="text_id"
               name="Beginner"
               autocomplete="on">
                
        <input type="submit">
    </form>
    <br>
</body>
 
</html>


Output: 

HTML input autocomplete attribute

Supported Browsers: The browser supported by HTML <input> autocomplete Attribute are listed below: 

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Safari

Contact Us