Open In App

HTML | DOM Input Month autocomplete Property

Last Updated : 20 Sep, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

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: 

  • It returns the Input Month autocomplete property. 
monthObject.autocomplete
  • It is used to set the Input Month autocomplete property. 
monthObject.autocomplete = "on|off" 

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

  • on: It is the default value. It automatically completes the values. 
     
  • off: It defines that the user should fill the values of the input month field. It does not automatically complete the values.

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

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

HTML




<!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: 

  • Before Clicking On Button: 

  • After Clicking On Button: 

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

HTML




<!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: 

  • Before Clicking On Button: 

  • After Clicking On Button: 

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

  • Google Chrome 20 and above
  • Edge 12 and above
  • Opera 11 and above


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads