JQuery UI Datepicker Disable Weekends

jQuery UI Datepicker - Disable Weekends

Hello everyone, Today's I am going to share the code sample for disable all the weekends days of jQuery UI Datepicker.

The example in detail as given below.

Date Picker HTML code

NoWeekends <div id="datepickerNoWeekends"></div>

Date Picker with No-Weekends JavaScript code sample

<script>
    $('#datepickerNoWeekends').datepicker({
        beforeShowDay: $.datepicker.noWeekends
    });
</script>


Note : The noWeekends is an internal function of jQuery datepicker. Its work default when we using the code($.datepicker.noWeekends) for disable to all weekends.

The output result, you can seen in the below calendar, Here all weekends date is disabled.

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^