HTML | DOM Input Week stepUp() Method
The Input Week stepUp() method in HTML DOM is used to increase the value of the week field by the given number. This method will only increase the value of weeks not years.
Syntax:
weekObject.stepUp( number )
Parameters: It accepts single parameter number which is mandatory. It specifies the number of weeks to be increased. By default, the weeks incremented by 1.
Return Value: It doesn’t return any value.
Example: This example uses Input Week stepUp() method to increase the week by 2.
<!DOCTYPE html> < html > < head > < title > HTML DOM Input Week stepUp() Method </ title > </ head > < body style = "text-align:center;" > < h1 >GeeksForGeeks</ h1 > < h2 >DOM Input Week stepUp() Method</ h2 > < form id = "myGeeks" > < input type = "week" id = "week_id" name = "geeks" value = "2019-W03" > </ form >< br > < button onclick = "myGeeks()" > Click Here! </ button > <!-- Script to increment the week --> < script > function myGeeks() { document.getElementById("week_id").stepUp(2) ; } </ script > </ body > </ html > |
Output:
Before clicking the button:
After clicking the button:
Supported Browsers: The browser supported by DOM Input Week stepUp() method are listed below:
- Google Chrome
- Internet Explorer 12.0
- Opera
- Safari