<html>
<body>
Time: <input type="time" id="myTime" value="16:32:55">
<p>Click the button to decrement the value of the time field by 1 minute (each time you click).</p>
<p><strong>Note:</strong> This is the same as clicking the down arrow on the right side of the time field for the "minute" section.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
document.getElementById("myTime").stepDown();
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_input_time_stepdown2 by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 18:16:56 GMT -->
</html>