-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathREADME
executable file
·32 lines (26 loc) · 1.1 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Version: 2.0.0
A simple way to implement smart date select boxes. Given month, day, and year select boxes, this plugin will automatically populate the day select box with the proper amount of days for a given year and month combination, taking leap years into account.
Demo: http://nickbusey.github.io/jQuery-Date-Select-Boxes-Plugin/
Install: bower install jQueryDateSelectBoxes
Usage: $().dateSelectBoxes({
monthElement: $('#birthMonth'),
dayElement: $('#birthDay'),
yearElement: $('#birthYear'),
keepLabels: true
});
Options:
keepLabels - Preserves the first option in the select
Default: false
generateOptions - Populates the selects with options
Default: false
yearMax - Maximum year generated by generateOptions
Default: new Date().getFullYear()
yearMin - Minimum year generated by generateOptions
Default: 1900
yearLabel - Label for generated options
Default: 'Year'
monthLabel - Label for generated options
Default: 'Month'
dayLabel - Label for generated options
Default: 'Day'
Uses and includes the jQuery Select Box Manipulation plugin http://www.texotela.co.uk/code/jquery/select/