The HTML DOM Input Time max property returns/sets max attribute of Input Time.
Syntax
Following is the syntax −
- Returning string value
inputTimeObject.max
- Setting max to string value
inputTimeObject.max = hh:mm:ss.ms
String Values
Here, “hh:mm:ss.ms” can be the following −
stringValue | Details |
---|---|
hh | It defines hour (eg:18) |
mm | It defines minutes (eg:59) |
ss | It defines seconds (eg:00) |
ms | It defines milli-seconds (eg:700) |
Example
Let us see an example of Input Time max property −
<!DOCTYPE html> <html> <head> <title>Input Time max</title> <style> form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 10px; } </style> </head> <body> <form> <fieldset> <legend>Time-max</legend> <label for="TimeSelect">Time Elapsed: <input type="time" id="TimeSelect" value="00:00:00" max="03:00:00"> </label> <input type="button" onclick="getElapsedTime()" value="Confirm"> <div id="divDisplay"></div> </fieldset> </form> <script> var divDisplay = document.getElementById("divDisplay"); var inputTime = document.getElementById("TimeSelect"); divDisplay.textContent = 'Max Time: '+inputTime.max; function getElapsedTime() { if(inputTime.value <= inputTime.max) divDisplay.textContent = 'You took '+inputTime.value+' out of available '+inputTime.max; else divDisplay.textContent = 'You cannot exceed max time: '+inputTime.max; } </script> </body> </html>
Output
This will produce the following output −
Before clicking ‘Confirm’ button −
After clicking ‘Confirm’ button with invalid time field −
After clicking ‘Confirm’ button with valid time field −