Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | <form> autocomplete Attribute

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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:

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

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

 


My Personal Notes arrow_drop_up
Last Updated : 22 Jul, 2022
Like Article
Save Article
Similar Reads
Related Tutorials