Javascript examples for DOM HTML Element:Input Date
The stepDown() method decrements the days of the date field by a number.
Parameter | Description |
---|---|
number | Required. amount of days the date field should decrease.If omitted, the days are decremented by 1 |
No return value
The following code shows how to Decrement the value of a date field by 5 days:
<!DOCTYPE html> <html> <body> Date: <input type="date" id="myDate" value="2014-05-05"> <button onclick="myFunction()">Test</button> <script> function myFunction() {//from w w w . j a va2 s .c om document.getElementById("myDate").stepDown(5); } </script> </body> </html>