Home > Web Front-end > JS Tutorial > body text

How can I disable Saturdays, Sundays, and Holidays in jQuery UI Datepicker?

Barbara Streisand
Release: 2024-11-19 08:11:03
Original
209 people have browsed it

How can I disable Saturdays, Sundays, and Holidays in jQuery UI Datepicker?

Disabling Saturdays, Sundays, and Holidays in the jQuery UI Datepicker

The jQuery UI Datepicker is a versatile tool for selecting dates, but what if you need to disable certain days, such as weekends or holidays? Fortunately, there's a way to achieve this.

Using the beforeShowDay Option

The beforeShowDay option allows you to specify a callback function that will be called for each day in the datepicker. This function returns an array with two elements:

  • [0]: true if the date is selectable, false if it's disabled
  • [1]: A CSS class name(s) or an empty string for the default presentation

To disable Saturdays and Sundays, simply pass the $.datepicker.noWeekends function to beforeShowDay:

$(".selector").datepicker({ beforeShowDay: $.datepicker.noWeekends });
Copy after login

Combining with National Holidays

You can also exclude national holidays using the nationalDays function provided in the example above. To combine the two, use the following code:

function noWeekendsOrHolidays(date) {
    var noWeekend = $.datepicker.noWeekends(date);
    if (noWeekend[0]) {
        return nationalDays(date);
    } else {
        return noWeekend;
    }
}
Copy after login

Then, pass noWeekendsOrHolidays to beforeShowDay:

$(".selector").datepicker({ beforeShowDay: noWeekendsOrHolidays });
Copy after login

Note: In jQuery UI 1.8.19 and later, the beforeShowDay option also accepts an optional third parameter for a popup tooltip.

The above is the detailed content of How can I disable Saturdays, Sundays, and Holidays in jQuery UI Datepicker?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template