HTML | DOM Input URL autocomplete Property Last Updated : 17 Oct, 2019 Comments Improve Suggest changes Like Article Like Report 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 browser will automatically complete the values based on which the user entered before. Syntax: It returns the Input URL autocomplete property. urlObject.autocomplete It is used to set the Input URL autocomplete property. urlObject.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 URL input 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 the property. html <!DOCTYPE html> <html> <head> <title> DOM Input URL autocomplete Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input URL autocomplete Property </h2> <label for="uname" style="color:green"> </label> <form id="geeks"> <input type="url" id="gfg" placeholder="Enter URL" size="20" value="GeeksForGeeks" pattern="https?://.+" title="Include http://" autocomplete="on"> </form> <br> <br> <button type="button" onclick="geeks()"> Click </button> <p id="GFG" style="color:green; font-size:25px;"> </p> <script> function geeks() { var link = document.getElementById( "gfg").autocomplete; document.getElementById( "GFG").innerHTML = link; } </script> </center> </body> </html> Output: Before Clicking On Button: After Clicking On Button: Example-2: This Example illustrates how to set the property. html <!DOCTYPE html> <html> <head> <title> DOM Input URL autocomplete Property </title> </head> <body> <center> <h1 style="color:green;"> GeeksForGeeks </h1> <h2> DOM Input URL autocomplete Property </h2> <label for="uname" style="color:green"> </label> <form id="geeks"> <input type="url" id="gfg" placeholder="Enter URL" size="20" value="GeeksForGeeks" pattern="https?://.+" title="Include http://" autocomplete="on"> </form> <br> <br> <button type="button" onclick="geeks()"> Click </button> <p id="GFG" style="color:green; font-size:25px;"> </p> <script> function geeks() { var link = document.getElementById( "gfg").autocomplete = "off"; document.getElementById( "GFG").innerHTML = "The value of the autocomplete attribute "+ "was changed to " + link; } </script> </center> </body> </html> Output : Before Clicking on Button: After Clicking On Button : Supported Browsers: The browser supported by DOM input URL autocomplete property are listed below: Google Chrome Internet Explorer 10.0 + Firefox Opera Safari Comment More infoAdvertise with us Next Article HTML | DOM Input URL autocomplete Property M manaschhabra2 Follow Improve Article Tags : Misc Web Technologies HTML HTML-DOM Practice Tags : Misc 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 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 Search autocomplete Property The DOM Input Search autocomplete Property in HTML DOM is used to set or return the value of the autocomplete attribute of an Input search 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, th 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 Like