<!DOCTYPE html>
<html>
<body>

Year and Week: <input type="week" id="myWeek" name="year_week">

<p>Click the button to return the value of the name 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").name;
    document.getElementById("demo").innerHTML = x;
}
</script>

</body>
</html>