Open In App

HTML | <select> autofocus Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

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

Last Updated : 29 Apr, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads