I want to disable Sundays in jQuery UI calendar.
From docs I came to know about this:--
$(\'#datepicker\').datepicker({ minDate: 4,beforeShowDay: $.d
Yes you can disable Saturday and Sunday, In jQuery UI datepicker.
https://codepen.io/VijayDhanvai/pen/ExjdGPb
$("#date").datepicker({
beforeShowDay: function(date) {
var day = date.getDay();
return [(day != 0 && day != 6), ''];
}
});
try this
$("#datepicker").datepicker({
beforeShowDay: function(date) {
var day = date.getDay();
return [(day != 0), ''];
}
});
you can also use this code it is working for me
$("#date").datepicker({
filter: function(date, view) {
if (date.getDay() === 0 && view === 'day') {
return false; // Disable all Sundays, but still leave months/years, whose first day is a Sunday, enabled.
}
}
});