Hello everyone, Today's I am going to share the
code-sample for disable all the week days of jQuery UI Datepicker.
The noWeekends is an internal function of jQuery ui
datepicker and we are
using date to disable to all week days using the function disableOnlyWeekDays(date).
i.e.
Date Picker HTML code
Weekends Only <div id="datepickerOnlyWeekDays"></div>
Date Picker with only week days JavaScript code sample
<script>
function
disableOnlyWeekDays(date) {
return [!(weekDays[0])];;
}
$(function () {
beforeShowDay: disableOnlyWeekDays
});
});
</script>
The output result, you can seen in the below calendar,
all the week days are disabled.