Open In App

HTML | DOM Input Password autofocus Property

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: 

passwordObject.autofocus
passwordObject.autofocus = true|false

Property Values: 



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. 






<!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. 




<!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:


Article Tags :