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 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 URL list Property The input URL list property in HTML DOM is used to return a reference to the datalist element that contains an input URL field. Syntax: urlObject.list.id Return Value: It returns a string value that represents the value of the id attribute of the datalist element. Example: Below HTML code is used to 1 min read HTML DOM Input URL minLength Property The Input URL minLength Property in HTML DOM is used to set or return the value of the minlength attribute of a URL Input Field. It specifies the minimum number of characters that have been allowed in the URL field. Syntax: It returns the Input url minLength property.urlObject.minLengthIt is used to 2 min read HTML | DOM Input Date name Property The Input Date name property is used for setting or returning the value of the name attribute of a date field. 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.S 2 min read HTML | DOM Input URL placeholder Property The DOM Input URL placeholder Property is used to set or return the value of the Placeholder attribute of a URL Field.The placeholder attribute specifies a short hint as a text in the input field that describes the expected value. Syntax: It is used to return the placeholder property. urlObject.plac 2 min read Like