Open In App

HTML | <fieldset> autocomplete attribute

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: 
 



Example: This Example illustrates the use of <fieldset> autocomplete. 
 




<!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: 
 

 


Article Tags :