Open In App

HTML | DOM Input Month required Property

Last Updated : 29 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The Input Month required Property in HTML DOM is used to set or return whether Input Month Field should be filled or not when submitting the form. This property is used to reflect the HTML required attribute. 

Syntax:

  • It returns the Input Month required property.
monthObject.required
  • It is used to set the Input Month required property.
monthObject.required = true|false

Property Values:

  • true: It specifies that the Month field must be filled out before submitting the form.
  • false: It is the default value. It specifies that the Month field must not be filled out before submitting the form.

Return Value: It returns a Boolean value which represents that the Month Field must be filled or not before submitting the form.

Example-1: This example returns the Input Month required property. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input Month required Property
    </title>
</head>
<body style="text-align:center;">
    <h1>GeeksForGeeks</h1>
    <h2>DOM Input Month required Property</h2>
    <form id="myGeeks">
        <input type="month" id="month_id" name="geeks" required>
    </form>
    <br>
    <button onclick="myGeeks()">Click Here!</button>
    <p id="GFG" style="font-size:20px;"></p>
     
    <!-- Script to return the required Property-->
    <script>
        function myGeeks() {
            var gfg = document.getElementById("month_id").required;
            document.getElementById("GFG").innerHTML = gfg;
        }
    </script>
</body>
</html>


Output:

Before clicking on the button: 

 

After clicking on the button:

  

Example-2: This Example illustrates how to set the property. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input Month required Property
    </title>
</head>
<body style="text-align:center;">
    <h1>GeeksForGeeks</h1>
    <h2>DOM Input Month required Property</h2>
    <form id="myGeeks">
        <input type="month" id="month_id" name="geeks" required>
    </form>
    <br>
    <button onclick="myGeeks()">Click Here!</button>
    <p id="GFG" style="font-size:20px;"></p>
     
    <!-- Script to set the required Property-->
    <script>
        function myGeeks() {
            var gfg = document.getElementById("month_id");
            gfg.required = false;
            var g =    gfg.required;       
            document.getElementById("GFG").innerHTML =
                        "The value is changed from true to " + g;
        }
    </script>
</body>
</html>


Output: 

Before clicking on the button:

  

After clicking on the button:

  

Supported Browsers: The browser supported by DOM input Month required Property are listed below:

  • Google Chrome 20 and above
  • Edge 12 and above
  • Opera 11 and above

Note: In Firefox, the input type=”month” element does not show any date field or calendar.



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads