I\'ve gotten pretty far with this but stuck on the last part. I basically just need to disable all sundays and then be able to add dates to an array to also be disabled, I know
try this
beforeShowDay: function(date) { var day = date.getDay(); var string = jQuery.datepicker.formatDate('yyyy-mm-dd', date); if (day == 0){ return [false]; } else if(array.indexOf(string) != -1){ return [false]; } else{ return [true]; } }