datepicker exclude days
-
Hi,
I’m looking for solution to exclude multpiple dates (monday, tuesday, thursday) from the datepicker. I found some script in an old topic and iserted that script in page and also in contact form, but it doesn’t work ??
Here is the script I inserted:<script>
$(function () {// 0 = monday, 1 = tuesday, 2 = wednesday, 3 = thursday,
// 4=friday, 5 = saturday, 6=sundayvar daysToDisable = [0, 1, 3];
$(‘#appt_date_1’).datepicker({
beforeShowDay: disableSpecificWeekDays
});function disableSpecificWeekDays(date) {
var day = date.getDay();
for (i = 0; i < daysToDisable.length; i++) {
if ($.inArray(day, daysToDisable) != -1) {
return [false];
}
}
return [true];
}
});</script>
Anyone who can help me with this please? Thanks in advance!
- The topic ‘datepicker exclude days’ is closed to new replies.