THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Input Time stepDown() Method

Input Time Object Reference Input Time Object

Example

Decrement the value of a time field by 10 minutes:

document.getElementById("myTime").stepDown(10);
Try it yourself »

Definition and Usage

The stepDown() method decrements the value of the time field by a specified number.

This method will only have an affect on MINUTES (not hours, seconds or milliseconds).

Tip: To increment the value, use the stepUp() method.


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The stepDown() method is supported in all major browsers, except Internet Explorer.

Note: In Safari, you must enter a time in the time field before you can decrement the minutes.

Note: <input> elements with type="time" are not supported in Internet Explorer or Firefox.


Syntax

timeObject.stepDown(number)

Parameter Values

Parameter Description
number Required. Specifies the amount of minutes the time 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("myTime").stepDown();
Try it yourself »

Input Time Object Reference Input Time Object