HTML | DOM Input Hidden form Property Last Updated : 30 Aug, 2022 Comments Improve Suggest changes Like Article Like Report The Input Hidden form property is used to return the reference of the form containing the Input Hidden field. It is read-only Property that returns a form object on success. Syntax: hiddenObject.form Return Values: It returns a string value which specify the reference of the form containing the Input Hidden field Below Program that illustrates the Input Hidden form property. Example-1: html <!DOCTYPE html> <html> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOM Input Hidden form Property </h2> <form id="myGeeks"> <input type="hidden" id="GFG"> </form> <button onclick="myGeeks()"> Submit </button> <p id="sudo" style="color:green;font-size:35px;"> </p> <script> function myGeeks() { var x = document.getElementById( "GFG").form.id; document.getElementById( "sudo").innerHTML = x; } </script> </center> </body> </html> Output: Before Clicking On Button: After Clicking On Button: Supported Browsers: The browser supported by DOM input Hidden form Property are listed below: Google Chrome 1Edge 12Firefox 1Opera 2Safari 1 Comment More infoAdvertise with us Next Article HTML | DOM Input Hidden form Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc Similar Reads HTML | DOM Input Hidden name Property The Input Hidden name property in HTML DOM is used to set or return the value of the name attribute. The form data which has been submitted to the server can be identified by the name attribute. The name attribute is also used for referencing form data on the client side using JavaScript. Syntax: It 2 min read HTML | DOM Input Hidden type Property The DOM input Hidden type Property is used for returning the type of form element the hidden input field is. The Input Hidden type returns a string value which represents the type of form element the hidden input field is.Syntax: hiddenObject.type Return Values: It returns a string value which defin 1 min read HTML | DOM Input Hidden value Property The Input Hidden value property in HTML DOM is used to set or return the value of the value attribute of the hidden input field. The value attribute defines the default value of the input hidden field. Syntax: It returns the value property.hiddenObject.valueIt is used to set the value property.hidde 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 Like