I want to disable first saturday of every month + I want to disable all sundays I have tried below code which will only disable every sundays.How can I disable first saturday of every month ?? Below is the code I have tried : $(function () {
$("#txtDate").datepicker({
beforeShowDay: noSunday
});
function noSunday(date) {
var day = date.getDay();
return [(day > 0), ''];
};
});