Skip to content
jQuery(document).ready(function($) {
$('.year-picker').datepicker({
changeYear: true,
showButtonPanel: true,
dateFormat: 'yy',
// Restricts view panel down strictly to years
onClose: function(dateText, inst) {
var year = $("#ui-datepicker-div .ui-datepicker-year :selected").val();
$(this).datepicker('setDate', new Date(year, 1));
}
});
// Hide the month dropdown when the calendar overlays
$('.year-picker').focus(function () {
$(".ui-datepicker-month").hide();
});
});