<html>
<body>
<input type="week" id="myWeek"><br><br>
<button onclick="disableBtn()">Disable Week Field</button>
<button onclick="undisableBtn()">Undisable Week Field</button>
<p><strong>Note:</strong> input elements with type="week" are not supported in Internet Explorer or Firefox.</p>
<script>
function disableBtn() {
document.getElementById("myWeek").disabled = true;
}
function undisableBtn() {
document.getElementById("myWeek").disabled = false;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_week_disabled3 by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:17:22 GMT -->
</html>