Open In App

HTML | DOM Input Email form Property

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.






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

Article Tags :