Open In App

HTML | DOM Input Month disabled Property

Improve
Improve
Like Article
Like
Save
Share
Report

The DOM Input Month disabled property in HTML DOM is used to return a boolean value that represents that a Month field should be disabled or not. Disabled elements are shown in gray by default and are unusable and un-clickable. 

Syntax: 

  • It returns the disabled property.
monthObject.disabled
  • It is used to set the disabled property.
monthObject.disabled = true/false

Property Values: 

  • true: It specifies the Month field is disabled.
  • false: It specifies the Month field is not disabled. It is false by default.

Return Value: It returns a boolean value i.e. true if the Month field is disabled or false if the Month field is not disabled. 

Example-1: This example returns the value of disabled property. 

HTML




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

HTML




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


Output: 

Before clicking on the button:

  

After clicking on the button:

  

Supported Browsers: The browser supported by DOM input Month disabled 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.



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