HTML | DOM Input Reset autofocus Property

The Input Reset autofocus Property in HTML DOM is used to set or return whether the Input reset Field should get focus or not when the page loads. It reflects the HTML autofocus attribute.

Syntax: 

  • It returns the autofocus property.
resetObject.autofocus
  • It is used to set the autofocus property.
resetObject.autofocus = "true|false"

Property Values: 

  • true: It sets the focus of reset field.
  • false: It has the default value. It defines the reset field does not get focus.

Return Value: It returns a boolean value which represents the reset field gets autofocus or not. 

Example 1: This example returns the Input reset autofocus property. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input reset autofocus property
    </title>
</head>
<body style="text-align:center;">
    <h1 style="color:green;">
        w3wiki
    </h1>
    <h2>DOM Input reset autofocus Property</h2>
    <form id ="myBeginner">
        <input type="reset" id="GeekReset" name="Beginner"
            value="Reset form" autofocus>
    </form>
    <p>
        Click on below button to return the Property
    </p>    
    <button onclick="myBeginner()">
        Click Here
    </button>
    <p id="Geek_p" style="color:green; font-size:30px;"></p>
     
    <!-- Script to return Input reset autofocus Property -->
    <script>
        function myBeginner() {
            var x = document.getElementById("GeekReset").autofocus;
            document.getElementById("Geek_p").innerHTML = x;
        }
    </script>
</body>
</html>


Output: 

Before Clicking the Button:

  

After Clicking the Button:

  

Example 2: This example illustrates how to set Input reset autofocus property. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input reset autofocus property
    </title>
</head>
<body style="text-align:center;">
    <h1 style="color:green;">
        w3wiki
    </h1>
    <h2>
        DOM Input reset autofocus Property
    </h2>
    <form id ="myBeginner">
        <input type="reset" id="GeekReset" name="Beginner"
            value="Reset form" autofocus>
    </form>
    <p>
        Click on below button to set the Property
    </p><br>
    <button onclick="myBeginner()">
        Click Here
    </button>
    <p id="Geek_p" style="color:green; font-size:30px;"></p>
     
    <!-- Script to set Input reset autofocus Property -->
    <script>
        function myBeginner() {
            var x = document.getElementById("GeekReset").autofocus
                    = false;
                     
            document.getElementById("Geek_p").innerHTML = x;
        }
    </script>
</body>
</html>


Output: 

Before Clicking the Button:

 

After Clicking the Button:

  

Supported Browsers: The browser supported by DOM Input Reset autofocus Property are listed below:

  • Google Chrome 1 and above
  • Edge 12 and above
  • Firefox 1 and above
  • Opera
  • Safari 1 and above