Open In App

HTML | <fieldset> autocomplete attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <fieldset> autocomplete attribute is used to specify that the fieldset 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: 
 

<fieldset 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 <fieldset> autocomplete. 
 

html




<!DOCTYPE html>
<html>
    <head>
        <title>HTML fieldset autocomplete attribute </title>
        <style>
            h1, h2, .titl{
                text-align:center;
            }
            fieldset {
                width:50%;
                margin-left:22%;
            }
            h1 {
                color:green;
            }
        </style>
    </head>
    <body>
        <h1>GeeksforGeeks</h1>
        <h2> HTML fieldset autocomplete attribute</h2>
        <form>
            <div class="title">Suggest article for video:</div>
            <fieldset autocomplete ="on">
                <legend>JAVA:</legend>
                Title: <input type="text"><br>
                Link: <input type="text"><br>
                User ID: <input type="text">
            </fieldset>
            <br>
 
        </form>
    </body>
</html>


Output: 
 

Supported Browsers: The browsers supported by <fieldset> autocomplete attribute are listed below: 
 

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

 



Last Updated : 13 Jun, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads