Open In App

HTML input autocomplete Attribute

Last Updated : 04 Jul, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

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>GeeksForGeeks</h1>
    <h2>
        HTML | input autocomplete Attribute
    </h2>
    <form id="myGeeks">
        <input type="text"
               id="text_id"
               name="geeks"
               autocomplete="on">
                
        <input type="submit">
    </form>
    <br>
</body>
 
</html>


Output: 

autocomplete.png

HTML input autocomplete attribute

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

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

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads