HTML | DOM Input Month type Property

The DOM Input Month type Property is used for returning which type of form element a Month field is. 

Syntax:

monthObject.type

Return Value: It returns a string value which represent the type of form element the Month field is. 

Below program illustrates the Month type property: 

Example: Returning the type of form element the Month field is. 

HTML




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


Output: 

Before clicking on the button:

  

After clicking on the button:

  

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


Contact Us