window.addEventListener('load', function () {
// Disable today on load
document.querySelectorAll('.flatpickr-day.today').forEach(function (el) {
el.classList.add('flatpickr-disabled');
});
// Format today's date as "May 27, 2025"
var today = new Date();
var formattedDate = today.toLocaleDateString('en-US', {
year: 'numeric',
month: 'long',
day: '2-digit'
});
// Add 'flatpickr-disabled' to the element with the aria-label matching today's date
document.querySelectorAll('[aria-label="' + formattedDate + '"]').forEach(function (el) {
el.classList.add('flatpickr-disabled');
});
// Also disable if it's inside .dayContainer
document.querySelectorAll('.dayContainer span.today').forEach(function (el) {
el.classList.add('flatpickr-disabled');
});
});
Customer reviews
Reviews
There are no reviews yet.
Write a customer review