Open In App

HTML | DOM Input Password autofocus Property

Improve
Improve
Like Article
Like
Save
Share
Report

The DOM Input Password autofocus Property is used to set or return whether the Input Password field should get focus or not when the page loads. This Property is used to reflect the HTML autofocus attribute. Syntax: 

  • It is used to return the autofocus property.
passwordObject.autofocus
  • It is used to set the autofocus property.
passwordObject.autofocus = true|false

Property Values: 

  • true: It defines that a Password field gets focus.
  • false: It has a default value. It defines that the Password field does not get focus

Return Value: It returns a boolean value which represents that the Password field get autofocus or not. 

Example-1: This Example illustrates how to return the property. 

HTML




<!DOCTYPE html>
<html>
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>DOM Input Password autofocus Property</h2> Password:
    <input type="password"
        id="myPsw"
         autofocus>
    <br><br>
    <button onclick="myFunction()">
        Click Here!
    </button>
    <p id="demo" style="color:green;font-size:25px;"></p>
    <script>
        function myFunction() {
            var x =
            document.getElementById(
            "myPsw").autofocus;
             
            document.getElementById(
            "demo").innerHTML = x;
        }
    </script>
</body>
</html>


Output: 

Before Clicking On Button:

  

After Clicking On Button: 

 

Example-2: This Example illustrates how to set the property. 

HTML




<!DOCTYPE html>
<html>
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>DOM Input Password autofocus Property</h2> Password:
    <input type="password"
        id="myPsw"
        autofocus>
    <br><br>
    <button onclick="myFunction()">
        Click Here!
    </button>
    <p id="demo" style="color:green;font-size:25px;"></p>
    <script>
        function myFunction() {
            var x =
            document.getElementById(
            "myPsw").autofocus = false;
             
            document.getElementById(
            "demo").innerHTML = x;
        }
    </script>
</body>
</html>


Output: 

Before Clicking On Button:

  

After Clicking On Button:

  

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

  • Google Chrome 1+
  • Edge 12+
  • Firefox 1+
  • Opera 2+
  • Safari 1+


Last Updated : 25 Aug, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads