HTML | DOM Input Reset value Property Last Updated : 02 Sep, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report The Input Reset value Property in HTML DOM is used to set or return the value of the value attribute of a Input reset Field. The value attribute specifies the text displayed in the reset Field. Syntax: It returns the Input Reset value Property.resetObject.valueIt is used to set the Input Reset value Property.resetObject.value = text Property Value: It contains single value text which defines the text displayed in the reset button. Return Value: It returns the string value which represent the text displayed in the reset button. Example 1: This example illustrates how to return the Input reset value property. HTML <!DOCTYPE html> <html> <head> <title> HTML DOM Input reset value property </title> </head> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOM Input reset value Property</h2> <input type="reset" id="GeekReset" value="Reset form"> <p> Click on below button to return the Property </p> <button onclick="myGeeks()"> Click Here </button> <p id="Geek_p" style="font-size:30px; color:green;"></p> <!-- Script to return the Input reset value Property --> <script> function myGeeks() { var x = document.getElementById("GeekReset").value; document.getElementById("Geek_p").innerHTML = x; } </script> </body> </html> Output: Before Clicking the Button: After Clicking the Button: Example 2: This example illustrates how to set the Input Reset value Property. HTML <!DOCTYPE html> <html> <head> <title> HTML DOM Input reset value property </title> </head> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOM Input reset value Property</h2> <input type="reset" id="GeekReset" value="Reset form"> <p> Click on below button to set the Property </p> <button onclick="myGeeks()"> Click Here </button> <p id="Geek_p" style="font-size:30px; color:green;"></p> <!-- Script to set the e Input reset value Property --> <script> function myGeeks() { var x = document.getElementById("GeekReset").value = "Reset Button"; document.getElementById("Geek_p").innerHTML = x; } </script> </body> </html> Output: Before Clicking the Button: After Clicking the Button: Supported Browsers: The browser supported by DOM Input Reset value property are listed below: Google Chrome 1 and aboveEdge 12 and aboveFirefox 1 and aboveOperaSafari 1 and above Comment More infoAdvertise with us Next Article HTML | DOM Input URL value Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc Similar Reads HTML | DOM Input Range value Property The DOM Input Range value Property in HTML DOM is used to set or return the value of the slider control or input range field. The attribute specifies the default value or the user type value. Syntax: It returns the value property.rangeObject.valueIt is used to set the value property.rangeObject.valu 2 min read HTML | DOM Input URL value Property The DOM Input URL value Property in HTML DOM is used to set or return the value of the input URL field. The attribute specifies the default value or the user type value. Syntax: It returns the value property.urlObject.valueIt is used to set the value property.urlObject.value = url Property Values: I 2 min read HTML DOM Input Tel value Property The Input Tel value Property in HTML DOM is used to set or return the value of Tel attribute in the input Tel field. The value attribute specifies the initial value of the input Tel field. It contains the default value or the user types. Syntax: It returns the value property.telObject.valueIt is use 1 min read HTML | DOM Input Reset type Property The Input Reset type Property in HTML DOM is used to return the type of form element of the reset field. It always returns the "reset" for an Input reset field. Syntax: resetObject.type Return Value: It returns a string value that represents the type of form element the Input reset field is. Below p 1 min read HTML | DOM Input Search value Property The DOM Input Search value Property in HTML DOM is used to set or return the value of a value attribute of the search field. The value attribute specifies the initial value of the input search Field. It contains the default value or user types. Syntax: It returns the value property.searchObject.valu 2 min read HTML DOM Input Submit value Property The Input Submit value Property in HTML DOM is used to set or return the value of the Input Submit Field. The value attribute specifies the text displayed in the Submit Field. Syntax: It returns the value property.submitObject.valueIt is used to set the value property.submitObject.value = textProp 2 min read Like