HTML | DOM Input Email autofocus Property

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

Syntax:

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

Property Values:

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

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

Example: This example returns the Input Email autofocus property. 

HTML




<!DOCTYPE html>
<html>
     
<head>
    <title>
        HTML DOM Input Email autofocus Property
    </title>
</head>    
 
<body>
    <h1> w3wiki</h1>
    <h2>DOM Input Email autofocus Property</h2>
    E-mail: <input type="email" id="email"
            value="careers@w3wiki.net" autofocus>
    <button onclick="myBeginner()">
        Click Here!
    </button>
    <p id="GFG" style="font-size:25px;color:green;"></p>
     
    <!-- Script to return Input Email autofocus Property -->
    <script>
        function myBeginner() {
            var em = document.getElementById("email").autofocus;
            document.getElementById("GFG").innerHTML = em;
        }
    </script>
</body>
 
</html>


Output: 

Before clicking on the button:

  

After clicking on the button:

  

Example 2: This example sets the Input Email autofocus property. 

HTML




<!DOCTYPE html>
<html>
     
<head>
    <title>
        HTML DOM Input Email autofocus Property
    </title>
</head>    
 
<body style="text-align:center;">
    <h1> w3wiki</h1>
    <h2>DOM Input Email autofocus Property</h2>
    E-mail: <input type="email" id="email"
            value="careers@w3wiki.net" autofocus>
    <button onclick="myBeginner()">
        Click Here!
    </button>
    <p id="GFG" style="font-size:25px;color:green;"></p>
     
    <!-- Script to set the Input Email autofocus Property -->
    <script>
        function myBeginner() {
            var em = document.getElementById("email").autofocus
                    = "false"
            document.getElementById("GFG").innerHTML
                    = "The value of the autofocus attribute"
                      + " was changed to " + em;
        }
    </script>
</body>
 
</html>


Output : 

Before clicking on the button:

  

After clicking on the button:

  

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

  • Google Chrome 5
  • Edge 12
  • Firefox
  • Opera 11
  • Safari


Contact Us