Open In App

HTML | DOM Input Week autocomplete Property

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

The Input Week autocomplete Property in HTML DOM is used to set or return the value of the autocomplete attribute of an Input week 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 week autocomplete property.
weekObject.autocomplete
  • It is used to set the Input week autocomplete property.
weekObject.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 week 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 illustrates how to return Input Week autocomplete property. 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Input Week autocomplete Property
    </title>
</head>
 
<body style="text-align:center;">
    <h1>GeeksForGeeks</h1>
    <h2>DOM Input Week autocomplete Property</h2>
    <form id="myGeeks">
        <input type="week" id="week_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() {
            var gfg = document.getElementById(
                        "week_id").autocomplete;
             
            document.getElementById("GFG").innerHTML
                        = gfg;
        }
    </script>
</body>
 
</html>


Output:

  • Before Clicking On Button:

 

  • After Clicking On Button:

 

Example 2: This example illustrates how to set Input Week autocomplete property. 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Input Week autocomplete Property
    </title>
</head>
 
<body style="text-align:center;">
    <h1>GeeksForGeeks</h1>
    <h2>DOM Input Week autocomplete Property</h2>
    <form id="myGeeks">
        <input type="week" id="week_id"
                name="geeks" autocomplete="on">
    </form>
    <br>
    <button onclick="myGeeks()">Click Here!</button>
    <p id="GFG" style="font-size:20px;"></p>
     
    <!-- Script to set the autocomplete Property-->
    <script>
        function myGeeks() {
            var gfg = document.getElementById(
                    "week_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 Week autocomplete Property are listed below:

  • Google Chrome 20+
  • Edge 12+
  • Opera 11+


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads