Input DatetimeLocal stepDown() Method
Example
Decrement the value of a datetime field by 10 minutes:
document.getElementById("myLocalDate").stepDown(10);
Try it Yourself »
Description
The stepDown() method decrements the value of the local datetime field by a specified number.
This method will only have an affect on MINUTES (not years, months, days, hours, seconds or milliseconds).
Tip: To increment the value, use the stepUp() method.
Browser Support
Method | |||||
---|---|---|---|---|---|
stepDown() | Yes | 12.0 | Not supported | Yes | Yes |
Syntax
datetimelocalObject.stepDown(number)
Parameter Values
Parameter | Description |
---|---|
number | Required. Specifies the amount of minutes the datetime field should decrease. If omitted, the minutes are decremented by "1" |
Technical Details
Return Value: | No return value |
---|
More Examples
Example
Decrement the minutes by 1 (default):
document.getElementById("myLocalDate").stepDown();
Try it Yourself »
❮ Input DatetimeLocal Object