I use the feature of selecting a year with a dropdown. I use it to set birthdays of people at least 18 years old. So far it works perfectly. I have set it up using theseg parameters:
$('#datepicker').datepicker({
changeMonth: true,
changeYear: true,
dateFormat: 'dd-mm-yy',
minDate: '-100Y',
maxDate: '-18Y'
});
However I'd like to have year navigation. Is it possible to add a next/previous year button?
Thanks in advance for any help!
Check this : http://jqueryui.com/demos/datepicker/dropdown-month-year.html its part of datepicker plug in
$(function() {
$('#datepicker').datepicker({
changeMonth: true,
changeYear: true
});
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With