Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | DOM Input Email type Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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

My Personal Notes arrow_drop_up
Last Updated : 18 Oct, 2022
Like Article
Save Article
Similar Reads
Related Tutorials