Skip to main content

Posts

Showing posts with the label jQuery UI Datepicker Disable Weekdays

jQuery UI Datepicker - Disable Weekdays

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 w eek days  JavaScript code sample < script >     function disableOnlyWeekDays(date) {         var weekDays = $.datepicker.noWeekends (date);         return [!(weekDays[0])];;     }     $( function () {         $( "#datepickerOnlyWeekDays" ). datepicker ({             beforeShowDay: disableOnlyWeekDays     ...