Open In App

HTML | DOM Input reset defaultValue Property

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

The Input reset defaultvalue Property in HTML DOM is used to set or return the default value of a reset field. This property is used to reflect the HTML value attribute. The main difference between the default value and value is that the default value indicates the default value and the value contains the current value after making some changes. This property is useful to find out whether the Input reset field has been changed or not.

Syntax: 

  • It returns the defaultValue property. 
resetObject.defaultValue
  • It is used to set the defaultValue property. 
resetObject.defaultValue = value

Property Values: It contains single property value value which defines the default value for Input reset field.

Return Value: It returns a string value which represent the default value of the Input reset field.

Example 1: This example illustrates how to return Input reset defaultValue Property.

HTML




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


Output: 

  • Before Clicking on Button: 

  • After Clicking on Button: 

Example 2: This example illustrates how to set Input reset defaultValue Property. 

HTML




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


Output: 

  • Before Clicking on Button: 

  • After Clicking on Button: 

Supported Browsers: The browsers supported by DOM Input reset defaultValue Property are listed below: 

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


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