Open In App

HTML | DOM Input Email type Property

The Input Email type property in HTML DOM is used to return the type of form element of the Email field. It always returns an email for an Input Email Field.

Syntax:  



emailObject.type

Return Values: It returns a string value that represents the type of form element of the Email field.  

The below program illustrates the Email type property in HTML DOM:



Example: This example returns the type of form element of the email field.  




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Input Email type Property
    </title>
</head>
 
<body style="text-align:center;">
    <h1>GeeksforGeeks</h1>
    <h2>
        DOM Input Email type Property
    </h2>
    E-mail: <input type="email" id="email" name="myGeeks" size="40">
    <br><br>
    <button onclick="myGeeks()">
        Click Here!
    </button>
    <p id="GFG" style="font-size:20px;color:green;"></p>
 
    <!-- Script to return Input Email type Property -->
    <script>
        function myGeeks() {
            var em = document.getElementById("email").type;
            document.getElementById("GFG").innerHTML = em;
        }
    </script>
</body>
 
</html>

Output: 
Before Clicking on the Button: 
 

After Clicking on the Button: 
 

Supported Browsers: The browser supported by DOM input Email type property are listed below: 


Article Tags :