HTML DOM Input Tel autocomplete Property Last Updated : 29 Jan, 2024 Comments Improve Suggest changes Like Article Like Report 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 browser will automatically complete the values based on the user entered before. Syntax: It returns the input tel autocomplete property. telObject.autocompleteIt is used to set the input tel autocomplete property. telObject.autocomplete = "on | off" Property Values: Property Value Description on It is the default value. It automatically completes the values. off It defines that the user should fill the values of the input Tel field. It does not automatically complete the values. Return Value: It returns a string value that represents the state of autocomplete. Example: This example returns the input tel autocomplete property. HTML <!DOCTYPE html> <html> <head> <title> HTML DOM Input Tel autocomplete Property </title> </head> <body style="text-align:center;"> <h1>GeeksforGeeks</h1> <h2>HTML DOM Input Tel autocomplete Property</h2> <input type="tel" id="mytel" value="6753682635" autocomplete="on"> <p> Click on button to check the status of autocomplete property </p> <button onclick="myFunction()"> Click Here! </button> <p id="result"></p> <script> function myFunction() { let telAutoComplete = document .getElementById("mytel").autocomplete; document.getElementById("result") .innerHTML = telAutoComplete; } </script> </body> </html> Output: Supported Browsers: Chrome 3FirefoxEdge 12Safari 4Opera 11 Comment More infoAdvertise with us Next Article HTML DOM Input Tel autocomplete Property M manaschhabra2 Follow Improve Article Tags : HTML HTML-DOM HTML-Property Similar Reads 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 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 HTML | DOM Input Week autocomplete Property 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 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 Like