Open In App

HTML | DOM Input Month autocomplete Property

The Input Month autocomplete Property in HTML DOM is used to set or return the value of the autocomplete attribute of an Input month field. The autocomplete attribute is used to specify whether the autocomplete attribute has “on” or “off” value. When the autocomplete attribute is set to on, the browser will automatically complete the values based on which the user entered before.

Syntax: 



monthObject.autocomplete
monthObject.autocomplete = "on|off" 

Property Values: It contains two values which are listed below: 

Return Value: It returns a string value which represents the state of autocomplete.



Example 1: This example returns the Input Month autocomplete property. 




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

Output: 

Example 2: This example sets the Input Month autocomplete property. 




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

Output: 

Supported Browsers: The browsers supported by DOM Input Month autocomplete property are listed below: 


Article Tags :