HTML DOM Input Range defaultValue Property Last Updated : 23 Sep, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report The Input Range defaultValue Property in HTML DOM is used to set or return the default value of the slider control. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicates the default value and the value contains the current value after making some changes. This property is useful to find out whether the range field has been changed or not. Syntax: It returns the Input Range defaultValue property. rangeObject.defaultValue It is used to set the Input range defaultValue property. rangeObject.defaultValue = value Property Values: It contains a single property, i.e, the value that defines the default value for the range field. Return Value: It returns a string value that represents the default value of the range field. Example: This example illustrates how to return the Input Range defaultValue property. HTML <!DOCTYPE html> <html> <style> #Geek_p { font-size: 30px; color: green; } </style> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOM Input Range defaultValue property </h2> <input name="Geek_range" type="range" id="Geek_Range" value="50"> <br> <br> <button onclick="returnDefault()"> Click Here to return the defaultValue Property </button> <p id="Geek_p"></p> <script> // Set the default value to 10 document.getElementById( "Geek_Range").defaultValue = "10"; // Return the Input Range defaultValue Property function returnDefault() { var x = document.getElementById( "Geek_Range" ).defaultValue; document.getElementById( "Geek_p").innerHTML = x; } </script> </body> </html> Output: Example 2: Below HTML code illustrates how to set the Input Range defaultValue Property. HTML <!DOCTYPE html> <html> <style> #Geek_p { font-size: 30px; color: green; } </style> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOM Input Range defaultValue property </h2> <input name="Geek_range" type="range" id="Geek_Range" value="50"> <br> <br> <button onclick="returnDefault()"> Click Here to Change the defaultValue Property </button> <p id="Geek_p"></p> <script> function returnDefault() { var x = document.getElementById( "Geek_Range").defaultValue = "10"; document.getElementById( "Geek_p").innerHTML = x; } </script> </body> </html> Output: Supported Browsers: Google Chrome 4 and aboveEdge 12 and aboveFirefox 23 and aboveOpera 11 and aboveSafari 3.1 and above Comment More infoAdvertise with us Next Article HTML | DOM Input Radio defaultvalue Property M manaschhabra2 Follow Improve Article Tags : HTML HTML-DOM HTML-Property Similar Reads HTML DOM Input Tel defaultValue Property The Input Tel defaultValue property in HTML DOM is used to set or return the default value of the input tel field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicates the default value and the value co 2 min read HTML | DOM Input URL defaultValue Property The DOM Input URL defaultValue Property in HTML DOM is used to set or return the default value of the URL Field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicates the default value and the value cont 2 min read HTML | DOM Input reset defaultValue Property The Input reset defaultvalue Property in HTML DOM is used to set or return the default value of a reset field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicates the default value and the value contai 2 min read HTML | DOM Input Radio defaultvalue Property The Input Radio defaultValue Property in HTML DOM is used to set or return the default value of a Radio field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicate the default value and the value contain 2 min read HTML DOM Input Text defaultValue Property The Input Text defaultValue Property in HTML DOM is used to set or return the default value of the Text Field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicate the default value and the value contain 2 min read HTML | DOM Input Week defaultValue Property The DOM Input Week defaultValue property in HTML DOM is used to set or return the default value of a week field. It is the value specified in the value attribute. Syntax: It returns the defaultValue property.weekObject.defaultValueIt is used to set the defaultValue property.weekObject.defaultValue = 2 min read Like