Open In App

HTML | DOM Input Email autofocus Property

Last Updated : 21 Sep, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

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> GeeksforGeeks</h1>
    <h2>DOM Input Email autofocus Property</h2>
    E-mail: <input type="email" id="email"
            value="careers@geeksforgeeks.org" autofocus>
    <button onclick="myGeeks()">
        Click Here!
    </button>
    <p id="GFG" style="font-size:25px;color:green;"></p>
     
    <!-- Script to return Input Email autofocus Property -->
    <script>
        function myGeeks() {
            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> GeeksforGeeks</h1>
    <h2>DOM Input Email autofocus Property</h2>
    E-mail: <input type="email" id="email"
            value="careers@geeksforgeeks.org" autofocus>
    <button onclick="myGeeks()">
        Click Here!
    </button>
    <p id="GFG" style="font-size:25px;color:green;"></p>
     
    <!-- Script to set the Input Email autofocus Property -->
    <script>
        function myGeeks() {
            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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads