Javascript examples for DOM HTML Element:Input Week
Input Week stepDown() Method - Decrement the weeks by 1 (default):
<!DOCTYPE html> <html> <body> <input type="week" id="myWeek" value="2014-W15"> <button onclick="myFunction()">Test</button> <script> function myFunction() {/*from ww w . ja v a 2 s. c om*/ document.getElementById("myWeek").stepDown(); } </script> </body> </html>