HTML | DOM Input Week autocomplete Property Last Updated : 20 Sep, 2022 Comments Improve Suggest changes Like Article Like 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.autocompleteIt 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+ Comment More infoAdvertise with us Next Article HTML | DOM Input Week autocomplete Property M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML-DOM Similar Reads HTML DOM Input Tel autocomplete Property The input tel autocomplete property in HTML DOM is used to set or return the value of the autocomplete attribute of an input tel field. The autocomplete attribute is used to specify whether the autocomplete attribute has an "on" or  "off" value. When the autocomplete attribute is set to on, the brow 2 min read HTML | DOM Input Text autocomplete Property The DOM Input Text autocomplete Property in HTML DOM is used to set or return the value of the autocomplete attribute of an Input Text 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 bro 2 min read HTML | DOM Input Time autocomplete Property The Input Time autocomplete Property in HTML DOM is used to set or return the value of the autocomplete attribute of an Input Time 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 browse 2 min read HTML | DOM Input Range autocomplete Property The Input Range autocomplete Property in HTML DOM is used to set or return the value of the autocomplete attribute of an Input range field. The autocomplete attribute is used to specify whether the autocomplete attribute has an âonâ or âoffâ value. When the autocomplete attribute is set to on, the b 2 min read HTML | DOM Input URL autocomplete Property The DOM Input URL autocomplete Property in HTML DOM is used to set or return the value of the autocomplete attribute of an Input URL 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 brow 2 min read Like