Plugin Defaults
$("example1").dateDropdowns();
Alternative Submit Format
$("example2").dateDropdowns({
submitFormat: "dd/mm/yyyy"
});
Default Date
$("example1").dateDropdowns({
defaultValue: "2010-02-17"
});
Min. Age 18 (Year)
$("example4").dateDropdowns({
minAge: 18
});
Alternative Display Format
$("example5").dateDropdowns({
displayFormat: "mdy"
});
Short Month Names
$("example6").dateDropdowns({
monthFormat: "short"
});
Unix
$("example7").dateDropdowns({
submitFormat: 'unix',
defaultDateFormat: 'unix'
});
Unix Default Date
$("example8").dateDropdowns({
submitFormat: 'unix',
defaultDateFormat: 'unix',
defaultDate: 456692066
});
Required
$("example10").dateDropdowns({
required: true
});