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

Related Articles

HTML | <select> autofocus Attribute

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

The HTML <select> autofocus Attribute is used to specify that the dropdown should automatically get focus when the page loads. It is a type of boolean attribute.

Syntax:

<select autofocus>

Example: This Example that illustrates the use of autofocus attribute in select Element.




<!DOCTYPE html>
<html>
  
<head>
    <title>
      HTML select autofocus Attribute
  </title>
</head>
  
<body style="text-align:center">
    <h1 style="color: green;">
      GeeksforGeeks
  </h1>
    <h2>
      HTML <select> autofocus Attribute
  </h2>
        <select autofocus>
            <option value="binary">
              Binary Search
          </option>
            <option value="linear">
              Linear Search
          </option>
            <option value="interpolation">
              Interpolation Search
          </option>
        </select>
</body>
  
</html>

Output:

Supported Browsers: The browser supported by HTML | <select>autofocus Attribute are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Safari
My Personal Notes arrow_drop_up
Last Updated : 29 Apr, 2019
Like Article
Save Article
Similar Reads
Related Tutorials