Open In App

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 browser will automatically complete the values based on which the user entered before. 

Syntax: 



timeObject.autocomplete
timeObject.autocomplete = "on|off" 

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

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



Example-1: This example illustrates how to return Input Time autocomplete property. 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        DOM Input Time autocomplete Property
    </title>
</head>
 
<body>
    <center>
        <h1 style="color:green;">
            GeeksForGeeks
        </h1>
        <h2>
            DOM Input Time autocomplete Property
        </h2>
        <label for="uname" style="color:green">
            <b>Enter time</b>
        </label>
        <input type="time" id="gfg" name="Geek_time"
            value="18:00" placeholder="Enter time"
            step="5" min="16:00" max="22:00:"
            autocomplete="on">
        <br><br>
 
        <button type="button" onclick="geeks()">
            Click
        </button>
        <p id="GFG" style=
            "font-size:24px;color:green'">
        </p>
        <script>
            function geeks() {
                 
                var link = document.getElementById
                        ("gfg").autocomplete;
                 
                document.getElementById(
                        "GFG").innerHTML = link;
            }
        </script>
    </center>
</body>
 
</html>

Output:

 

 

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




<!DOCTYPE html>
<html>
 
<head>
    <title>
        DOM Input Time autocomplete Property
    </title>
</head>
 
<body>
    <center>
        <h1 style="color:green;">
            GeeksForGeeks
        </h1>
        <h2>
            DOM Input Time autocomplete Property
        </h2>
        <label for="uname" style="color:green">
            <b>Enter time</b>
        </label>
        <input type="time" id="gfg" name="Geek_time"
            value="18:00" placeholder="Enter time"
            step="5" min="16:00" max="22:00"
            autocomplete="on">
        <br><br>
 
        <button type="button" onclick="geeks()">
            Click
        </button>
        <p id="GFG" style=
            "font-size:24px;color:green'">
        </p>
        <script>
            function geeks() {
                 
                var link = document.getElementById(
                        "gfg").autocomplete="off";
                 
                document.getElementById("GFG").innerHTML
                    = "The value was changed to " + link;
            }
        </script>
    </center>
</body>
 
</html>

Output:

 

 

Supported Browsers: The browsers supported by DOM Input Time autocomplete Property are listed below:


Article Tags :