Open In App

HTML | DOM Input Email form Property

Last Updated : 31 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The Input Email form property in HTML DOM is used to return the reference of form containing the input Email field. It is read-only property that returns a form object on success. 

Syntax: 

emailObject.form 

Return Values: It returns a string value which specify the reference of the form containing the Input Email field

Example: Below program illustrates the Input Email form property.

HTML




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