Input Date step Property
Example
Change the legal day intervals:
document.getElementById("myDate").step = "2";
Try it yourself »
Definition and Usage
The step property sets or returns the value of the step attribute of a date field.
The step attribute specifies the legal day intervals to choose from when the user opens the calendar in a date field.
For example, if step = "2", you can only select every second day in the calendar.
Browser Support
The step property is supported in all major browsers.
Note: The step property is not supported in Internet Explorer 9 and earlier versions.
Note: The <input type="date"> element is not supported in Internet Explorer or Firefox.
Syntax
Return the step property:
inputdateObject.step
Set the step property:
inputdateObject.step=number
Property Values
Value | Description |
---|---|
number |
Specifies the legal day intervals. Default is 1 day. Examples: If step="2", you can only select every second day in the date calendar. If step="10", you can only select every tenth day in the date calendar. |
Technical Details
Return Value: | A Number, representing the legal day intervals |
---|
More Examples
Example
Get the legal day intervals:
var x = document.getElementById("myDate").step;
The result of x will be:
5
Try it yourself »
Related Pages
HTML reference: HTML <input> step attribute
Input Date Object