How to specify that the element should automatically get focus when the page loads in HTML?


Use the autofocus attribute to specify that the element should get focus automatically on page load in HTML −

Example

You can try to run the following code to learn how to implement autofocus attribute in HTML −

<!DOCTYPE html>
<html>
   <body>
      <p>Click on the below button to generate an alert box.</p>
      <button type = "button" autofocus onclick = "alert('Welcome!')">Result</button>
   </body>
</html>

Updated on: 02-Mar-2020

166 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements