Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | DOM Input Reset form Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The Input Reset form Property in HTML DOM is used for return the reference of the form containing the input reset button field. It is read-only property.

Syntax: 

resetObject.form 

Return Values: It returns a string value which specify the reference of the form containing the Input reset field

Below example illustrates the Input reset form property.

Example: This example returns the Input Reset form Property.  

HTML




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

Output: 
Before Clicking the Button: 

After Clicking the Button: 

Supported Browsers: The browser supported by DOM input reset form Property are listed below: 

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

My Personal Notes arrow_drop_up
Last Updated : 26 Aug, 2022
Like Article
Save Article
Similar Reads
Related Tutorials