I'm trying to set up jQuery UI datepicker for my clients' websites, and it needs to hide certain days, as well as all Sundays EXCEPT mothering Sunday. Currently my code, borrowed heavily from another answer runs as:
function nonWorkingDates(date){
var day = date.getDay(), Sunday = 0, Monday = 1, Tuesday = 2, Wednesday = 3, Thursday = 4, Friday = 5, Saturday = 6;
var closedDates = [[02,24,2012],[03,14,2012],[03,15,2012],[03,20,2012],[03,21,2012],[03,23,2012],[03,26,2012],[03,27,2012]];
var closedDays = [[Sunday]];
var mothersDay = [[04,18,2012]];
for (var i = 0; i < closedDays.length; i++) {
if (day == closedDays[i][0]) {
return [false];
}
}
for (i = 0; i < closedDates.length; i++) {
if (date.getMonth() == closedDates[i][0] - 1 && date.getDate() == closedDates[i][1] && date.getFullYear() == closedDates[i][2]) {
return [false];
}
}
return [true];
}
<%-- Load jQuery UI Calendar --%>
$(function() {
jQuery("#calendar1").datepicker({
beforeShowDay: nonWorkingDates,
dateFormat: 'dd/mm/yy'
});
});
Is there any easy way to do this?