Adembenemende natuur
Culturele diversiteit
Unieke steden
// Wait for the DOM to load document.addEventListener("DOMContentLoaded", function () { const dropdown = document.querySelector("#dagen"); // Replace with your dropdown's ID or class const items = document.querySelectorAll(".duration"); // Replace with your collection items' class // Filter function dropdown.addEventListener("change", function () { const selectedValue = dropdown.value; items.forEach(item => { const itemDays = item.getAttribute("duration"); // Replace with your collection item's custom attribute for "days" if (selectedValue === "all" || selectedValue === "") { // Show all items if "all" is selected item.style.display = "block"; } else if (itemDays === selectedValue) { // Show items matching the selected value item.style.display = "block"; } else { // Hide items that don't match item.style.display = "none"; } }); }); });