HTML | DOM Input Email form Property Last Updated : 31 Aug, 2022 Comments Improve Suggest changes Like Article Like 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 5Edge 12FirefoxOpera 11Safari Comment More infoAdvertise with us Next Article HTML | DOM Input Email form Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc Similar Reads 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 progr 1 min read HTML DOM Input Email size Property The Input Email size property in HTML DOM is used to set or return the value of the size attribute of an Input Email Field. The size attribute is used to define the width of an email field. Its default value is 20. Syntax: It returns the Input Email size property. emailObject.sizeIt is used to set t 2 min read HTML | DOM Input URL form Property The DOM Input URL form Property is used for returning the reference of the form containing the URL field. It is read-only property and returns a form object on success. Syntax: urlObject.form Return Values: It returns a string value which specify the reference of the form containing the Input URL fi 1 min read HTML | DOM Input Text form Property The DOM Input Text form Property in HTML DOM is used to return the reference of form containing the input Text field. It is a read-only property that returns the form object on success. Syntax: textObject.form Return Values: It returns a string value which specify the reference of the form containin 1 min read HTML | DOM Input Week form Property The Input Week form property is used for returning a reference to the form that contains the Week field. It is a read-only property. Syntax: weekObject.form Return Value: It returns a form object on success, else if the week field is not in the form, it returns NULL. Below program illustrates the We 1 min read Like