Flatpickr — Constraints and Inline
Limit dates, disable weekends, and show an inline calendar.
Important JavaScript
flatpickr("#booking", {
minDate: "today",
maxDate: new Date().fp_incr(60),
disable: [
function (date) {
return date.getDay() === 0 || date.getDay() === 6;
},
],
});
flatpickr("#inline-date", { inline: true });