Мне нужен jQuery datepicker для отключения массива конкретных дат, а также всех понедельников и всех суббот.Я забил первые два гола, но не третий (отключить субботу).Вот код:
let fechasEspecificas = ["2018-11-06"]
jQuery.datepicker.setDefaults({
"minDate": 2,
"maxDate": new Date(2019,0,31),
beforeShowDay: function(date) {
let string = jQuery.datepicker.formatDate('yy-mm-dd', date);
if (contains(fechasEspecificas,string)) {
return [false, ''] // here are specific dates disabled
} else {
let day = date.getDay();
return [(day != 1), '']; // here are mondays disabled
}
}
});
function contains(a, obj) {var i = a.length;while (i--) {if (a[i] === obj){return true;}}return false;}
JSFIDDLE demo
Как можно расширить код, чтобы отключить также субботу?