HTML | DOM Input URL name Property Last Updated : 26 Aug, 2022 Comments Improve Suggest changes Like Article Like Report 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 Input url name property.urlObject.nameIt is used to set the Input url name property.urlObject.name = name Property Values: It contains a single value name which defines the name of the URL field. Return Value: It returns a string value which represents the name of the URL field. Example-1: This example illustrates how to return Input url name property. html <!DOCTYPE html> <html> <head> <title> DOM Input URL name Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input URL name Property </h2> <label for="uname" style="color:green"> <b> Enter URL </b> </label> <input type="url" id="gfg" placeholder="Enter URL" size="20" name="Geeks_url"> <br> <br> <button type="button" onclick="geeks()"> Click </button> <p id="GFG" style="color:green; font-size:25px;"> </p> <script> function geeks() { var link = document.getElementById( "gfg").name; document.getElementById( "GFG").innerHTML = link; } </script> </center> </body> </html> Output: Before Clicking On Button: After Clicking On Button: Example-2: This Example illustrates how to set Input URL name Property. html <!DOCTYPE html> <html> <head> <title> DOM Input URL name Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>DOM Input URL name Property</h2> <label for="uname" style="color:green"> <b> Enter URL </b> </label> <input type="url" id="gfg" placeholder="Enter URL" size="20" name="myGeeks"> <br> <br> <button type="button" onclick="geeks()"> Click </button> <p id="GFG" style="color:green; font-size:25px;"> </p> <script> function geeks() { var link = document.getElementById( "gfg").name; document.getElementById( "GFG").innerHTML = "The value of the name attribute "+ "was changed to " + link; } </script> </center> </body> </html> Output: Before Clicking On Button: After Clicking On Button: Supported Browsers: The browser supported by DOM input URL name Property are listed below: Google Chrome 1Edge 12FirefoxOpera 11Safari 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 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 Range name Property 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 2 min read HTML | DOM Input URL pattern Property The DOM Input URL pattern Property in HTML DOM is used to set or return the pattern attribute of a URL field. It is used to specify the regular expression on which the input elements value is checked. Use the global title attribute to describe the pattern for helping the user. Syntax: It returns the 2 min read HTML DOM Input Submit name Property The Input Submit name Property in HTML DOM is used to set or return the value of name attribute of a submit 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 Search name Property The Input Search name Property in HTML DOM is used to set or return the value of the name attribute of a search 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 retu 2 min read Like