VOOZH about

URL: https://www.geeksforgeeks.org/html/html-fieldset-autocomplete-attribute/

⇱ HTML | <fieldset> autocomplete attribute - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

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: 
 

  • 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. 
 

Output: 
 

👁 Image


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

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


 

Comment
Article Tags: