Open In App

HTML | DOM Input Email type Property

Last Updated : 18 Oct, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

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.  

HTML




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

  • Google Chrome 5 and above
  • Edge 12 and above
  • Internet Explorer 10 and above
  • Firefox
  • Opera 11 and above
  • Safari


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

Similar Reads