<!DOCTYPE html>
<html>
<body>

<input type="week" id="myWeek" value="2014-W15">

<p>Click the button to increment the value of the week field by 1 week (each time you click).</p>

<p><strong>Note:</strong> This is the same as clicking the up arrow on the right side of the week field for the "week" section.</p>

<button onclick="myFunction()">Try it</button>

<p><strong>Note:</strong> input elements with type="week" are not supported in Firefox.</p>

<script>
function myFunction() {
    document.getElementById("myWeek").stepUp();
}
</script>

</body>
</html>