Javascript examples for DOM HTML Element:Input Week
Input Week value Property - Get the week and year of a week field:
<!DOCTYPE html> <html> <body> <input type="week" id="myWeek" value="1995-W35"> <button onclick="myFunction()">Test</button> <p id="demo"></p> <script> function myFunction() {/*from w w w . j av a2s . c o m*/ var x = document.getElementById("myWeek").value; document.getElementById("demo").innerHTML = x; } </script> </body> </html>