<html>
<body>
Enter a week between Week 12 and Week 19 in 2014:
<input type="week" id="myWeek" min="2014-W12" max="2014-W19">
<p>Click the button to display the value of the min attribute of the week field.</p>
<button onclick="myFunction()">Try it</button>
<p><strong>Note:</strong> input elements with type="week" are not supported in Internet Explorer or Firefox.</p>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myWeek").min;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_week_min by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:17:22 GMT -->
</html>