Open In App

HTML | DOM Input Month name Property

The Input Month name property in HTML DOM is used to set or return the value of name attribute of a input Month field. The name attribute is required for each input Month field. If the name attribute is not specified in an input field then the data of that field would not be sent at all. 

Syntax:



monthObject.name
monthObject.name = name

Property Values: It contains a single property value i.e. name which is used to specify the name of the Month field. 

Return value: It returns a string value which represent the name of the input Month field. 



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




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input Month name Property
    </title>
</head>
<body style="text-align:center;">
    <h1>GeeksForGeeks</h1>
    <h2>DOM Input Month name Property</h2>
    <form id="myGeeks">
        <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 name  Property-->
    <script>
        function myGeeks() {
            var gfg = document.getElementById("month_id").name ;
            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 name property. 




<!DOCTYPE html>
<html>
<head>
    <title>
        HTML DOM Input Month name Property
    </title>
</head>
<body style="text-align:center;">
    <h1>GeeksForGeeks</h1>
    <h2>DOM Input Month name Property</h2>
    <form id="myGeeks">
        <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 set the name Property-->
    <script>
        function myGeeks() {
            var gfg = document.getElementById("month_id");
            gfg.name = "geeks2";   
            document.getElementById("GFG").innerHTML =
                        "The name of field is changed to " + gfg.name;
        }
    </script>
</body>
</html>

Output: 

Before clicking on the button: 

 

After clicking on the button:

  

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

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


Article Tags :