<html>
<body>
Time: <input type="time" id="myTime" value="16:32:55">
<p>Click the button to change the default value of the time field.</p>
<button type="button" onclick="myFunction()">Try it</button>
<script>
function myFunction() {
document.getElementById("myTime").defaultValue = "18:00";
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_input_time_defaultvalue by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:17:20 GMT -->
</html>