Open In App

HTML | DOM Input URL name Property

Improve
Improve
Like Article
Like
Save
Share
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.name
  • It 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 1
  • Edge 12
  • Firefox
  • Opera 11
  • Safari


Last Updated : 26 Aug, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads