Automatically Focus an Element on Page Load 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: 2020-03-02T12:43:31+05:30

229 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements