Open In App

HTML | DOM Input Time max Property

The DOM Input Time max Property in HTML DOM is used to set or return the value of the max attribute for the Time field. The max attribute specify the maximum time value allowed for the Time field. 

Syntax: 



timeObject.max
timeObject.max = hh:mm:ss.ms

Property values: 

Return Value: It returns a string value which represents the maximum time allowed for a Time field. 



Example-1: This example illustrates how to return the Input time max Property. 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        DOM Input Time max Property
    </title>
</head>
 
<body>
    <center>
        <h1 style="color:green;">
                GeeksForGeeks
            </h1>
 
        <h2>
          DOM Input Time max Property
      </h2>
 
        <label for="uname"
               style="color:green">
            <b>Enter time</b>
        </label>
 
        <input type="time"
               id="gfg"
               name="Geek_time"
               placeholder="Enter time"
               step="5"
               min="16:00"
               max="22:00">
 
        <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").max;
               
                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. 




<!DOCTYPE html>
<html>
 
<head>
    <title>
        DOM Input Time max Property
    </title>
</head>
 
<body>
    <center>
        <h1 style="color:green;">
                GeeksForGeeks
            </h1>
 
        <h2>
          DOM Input Time max Property
      </h2>
 
        <label for="uname"
               style="color:green">
            <b>Enter time</b>
        </label>
 
        <input type="time"
               id="gfg"
               name="Geek_time"
               placeholder="Enter time"
               step="5"
               min="16:00"
               max="22:00">
 
        <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").max = "24:00";
               
                document.getElementById(
                  "GFG").innerHTML =
                  "The value of the max 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 Time max property listed below:


Article Tags :