Sale

document.addEventListener("DOMContentLoaded", () => { const today = new Date(); today.setHours(0, 0, 0, 0); document.querySelectorAll(".cal").forEach(el => { const startStr = el.getAttribute("data-start"); const endStr = el.getAttribute("data-end"); const startDate = new Date(startStr); const endDate = new Date(endStr); startDate.setHours(0, 0, 0, 0); endDate.setHours(0, 0, 0, 0); if (today >= startDate && today <= endDate) { el.style.display = ""; } else { el.style.display = "none"; } }); });

Alle Artikel im Angebot