<html>
<body>
Date: <input type="datetime-local" id="myLocalDate">
<p>Click the button to set a local date and time for the datetime field.</p>
<button onclick="myFunction()">Try it</button>
<p><strong>Note:</strong> input elements with type="datetime-local" do not show as any datetime field/calendar in Firefox.</p>
<script>
function myFunction() {
document.getElementById("myLocalDate").value = "2014-01-02T11:42:13.510";
}
</script>
</body>
<!-- Mirrored from www.mdssup.ma/jsref/tryit.asp?filename=tryjsref_datetime-local_value by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 05 Sep 2022 15:53:05 GMT -->
</html>