A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-fieldset-autocomplete-attribute/ below:

HTML | <fieldset> autocomplete attribute

HTML | <fieldset> autocomplete attribute

Last Updated : 13 Jun, 2022

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. 
 

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: 
 



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4