HTML | DOM Input Range name Property Last Updated : 31 Aug, 2022 Summarize Comments Improve Suggest changes Share Like Article Like Report The DOM Input Range NAME Property in HTML DOM is used to set or return the value of name attribute of a range field. The name attribute is required for each input field. If the name attribute is not specified in an input field then the data of that field would not be sent at all. Syntax: It returns the Input range name property.rangeObject.nameIt is used to set the Input range name property.rangeObject.name = name Property Values: It contains a single value name which defines the name of the range field. Return Value: It returns a string value which represents the name of the range field. Example-1: This example illustrates how to return Input range name property. HTML <!DOCTYPE html> <html> <head> <title> HTML DOM Input range name Property </title> </head> <style> #Geek_p { font-size: 30px; color: green; } </style> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOM Input Range name property </h2> <input name=G eek_range type="range" id="Geek_Range" value="90"> <br> <br> <button onclick="myGeeks()"> Click Here </button> <p id="Geek_p"></p> <script> function myGeeks() { // Return name property. var x = document.getElementById( "Geek_Range").name; document.getElementById( "Geek_p").innerHTML = x; } </script> </body> </html> Output: Before Clicking On Button: After Clicking On Button: Example-2: This Example that illustrates how to set the name Property. HTML <!DOCTYPE html> <html> <head> <title> HTML DOM Input range name Property </title> </head> <style> #Geek_p { font-size: 30px; color: green; } </style> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOM Input Range name property </h2> <input name=G eek_range type="range" id="Geek_Range" value="90"> <br> <br> <button onclick="myGeeks()"> Click Here </button> <p id="Geek_p"></p> <script> function myGeeks() { // Set name property. var x = document.getElementById( "Geek_Range").name = "myGeeks"; document.getElementById("Geek_p").innerHTML = "The value of the name" + " attribute was changed to " + x; } </script> </body> </html> Output: Before Clicking On Button: After Clicking On Button: Supported Browsers: The browser supported by DOM input range name Property are listed below: Google Chrome 4Edge 12Firefox 23Opera 11Safari 3.1 Comment More infoAdvertise with us Next Article HTML | DOM Input URL name Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc Similar Reads HTML | DOM Input Range min Property The Input Range min Property in HTML DOM is used to set or return the value of min attribute of the slider control. The min attribute is used to specify the minimum value of slider control. Syntax: It returns the Input Range min Property:rangeObject.minIt is used to set Input Range min Property:rang 2 min read HTML | DOM Input Range max Property The Input Range max Property in HTML DOM is used to set or return the value of max attribute of the slider control. The max attribute is used to specify the maximum value of slider control. Syntax: It returns the Input Range max Property:rangeObject.maxIt is used to set Input Range max Property:rang 2 min read HTML | DOM Input URL name Property The DOM Input URL name Property in HTML DOM is used to set or return the value of name attribute of a URL field. The name attribute is required for each input field. If the name attribute is not specified in an input field then the data of that field would not be sent at all. Syntax: It returns the 2 min read HTML DOM Input tel name Property The input tel name property in HTML DOM is used to set or return the value of the name attribute of an input tel field. The name attribute is required for each input field. If the name attribute is not specified in an input field then the data of that field would not be sent at all. Syntax: It retur 1 min read HTML | DOM Input Time name Property The DOM Input Time name Property in HTML DOM is used to set or return the value of name attribute of a Time field. The name attribute is required for each input field. If the name attribute is not specified in an input field then the data of that field would not be sent at all. Syntax: It returns th 2 min read HTML | DOM Input Week name Property The Input Week name property in HTML DOM is used to set or return the value of the name attribute of an input week field. The name attribute is required for each input week field. If the name attribute is not specified in an input field then the data of that field would not be sent at all. Syntax: I 2 min read Like