At the moment I have a datepicker which:
Excludes today, if after 12:00 midday.
Excludes sundays.
<script type="text/javascript">
$(function() {
// get today's date
var myDate = new Date();
// add one day if after 12:00
if (myDate.getHours() > 12) {
myDate.setDate(myDate.getDate()+1);
} else {
myDate.setDate(myDate.getDate()+0);
};
$("#delivery-date-textbox").datepicker({
dateFormat: 'dd-mm-yy',
minDate: myDate,
beforeShowDay: function(date){ return [date.getDay() != 0,""]}
});
});
</script>
How can I make it also exclude an array of public holidays?