Open In App

HTML input autofocus Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <input> autofocus Attribute is used to specify that the input field must automatically get focused when the page loads which means the cursor will blink to the specified input field. It is a Boolean attribute. 

Syntax: 

<input autofocus> 

Example: This Example illustrates the use of autofocus attribute in <input> element. 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title> HTML input autofocus Attribute</title>
</head>
 
<body style="text-align:center">
 
    <h1 style="color: green;">GeeksforGeeks</h1>
    <h2> HTML input autofocus Attribute</h2>
    Name:
    <input type="text" autofocus>
    <br><br>
    <!-- Assign id to the Button. -->
    <button id="GFG">Submit</button>
    <br>
</body>
   
</html>


Output: 

Screenshot-from-2023-07-03-18-28-31.png

HTML input autofocus Attribute

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

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

Last Updated : 04 Jul, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads