Open In App

HTML <form> autocomplete Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <form> autocomplete Attribute is used to specify that the form has autocompleted on or off value. When the autocomplete attribute is set to on the browser will automatically complete the values base on which the user entered before. 

Syntax: 

<form autocomplete="on|off">

Attribute Values:

  • on: It has a default value. When the autocomplete attribute is set to on the browser will automatically complete the values base on which the user entered before. 
  • off: The user should have entered the values of each field for every use. The browser should not autocomplete entries. 

Example: This Example illustrates the use of <form>autocomplete Attribute.

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML Form autocomplete Attribute
    </title>
</head>
 
<body style="text-align:center">
 
    <h1>
        GeeksForGeeks
    </h1>
 
    <h2>
        HTML form autocomplete Attribute
    </h2>
 
    <form action="#"
          method="post"
          id="users"
          autocomplete="on">
 
        <label for="username">
            Username:
        </label>
 
        <input type="text"
               name="username"
               id="Username">
        <br>
 
        <label for="password">
            Password:
        </label>
 
        <input type="password"
               name="password"
               id="password">
        <br>
        <br>
    </form>
</body>
 
</html>


Output:

formAutoComplete.png

HTML form autocomplete attribute

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

  • Google Chrome
  • Edge 12 and above
  • Internet Explorer
  • Firefox
  • Opera
  • Safari


Last Updated : 04 Jul, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads