Open In App

HTML | DOM Input Reset name Property

Improve
Improve
Like Article
Like
Save
Share
Report

The Input Reset name Property in HTML DOM is used to set or return the value of name attribute of a reset 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 reset name property.
resetObject.name
  • It is used to set the Input reset name property.
resetObject.name = name

Property Values: It contains single value name which defines the name of the reset button field. 

Return Value: It returns a string value which represents the name of the reset button field. 

Example 1: This example illustrates how to return Input reset name property. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input reset name property
    </title>
</head>
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>DOM Input reset name Property</h2>
    <input type="reset" id="GeekReset" name="geeks"
            value="Reset form">
    <p>
        Click on below button to return the Property
    </p>    
    <button onclick="myGeeks()">
        Click Here
    </button>
    <p id="Geek_p" style="font-size:30px; color:green;"></p>
    <script>
        function myGeeks() {
            // Return Input reset name property
            var x =
            document.getElementById("GeekReset").name;
            document.getElementById("Geek_p").innerHTML =
            x;
        }
    </script>
</body>
</html>


Output: 

Before Clicking the Button: 

 

After Clicking the Button: 

 

Example 2: This example illustrates how to set the Input resetname Property. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input reset name property
    </title>
</head>
<body style="text-align:center;">
    <h1 style="color:green;">
        GeeksForGeeks
    </h1>
    <h2>DOM Input reset name Property</h2>
    <input type="reset" id="GeekReset" name="geeks"
            value="Reset form">
    <p>
        Click on below button to set the Property
    </p>    
    <button onclick="myGeeks()">
        Click Here
    </button>
    <p id="Geek_p" style="font-size:30px; color:green;"></p>
    <script>
        function myGeeks() {
            // setting input reset name property
            var x =
            document.getElementById("GeekReset").name
                    = "myGeeks";
                     
            document.getElementById("Geek_p").innerHTML
                    = "The value of the name attribute was"
                      + " changed to " +
            x;
        }
    </script>
</body>
</html>


Output: 

Before Clicking the Button: 

 

After Clicking the Button: 

Supported Browsers: The browser supported by DOM Input Reset name Property are listed below:

  • Google Chrome 1 and above
  • Edge 12 and above
  • Firefox 1 and above
  • Opera 
  • Safari 1 and above


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