Open In App

HTML | DOM Input Month form Property

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

The Input Month form property is used for returning a reference to the form that contains the Month field. It is a read-only property. Syntax:

monthObject.form

Return Value: It returns a form object on success, else if the Month field is not in the form, it returns NULL. 

Below program illustrates the Month form property:

Example: Returning the name of the form containing the element. 

HTML




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