Encuentra tu solución

Línea decoración
Filtros
Product added to compare.
document.addEventListener("DOMContentLoaded", () => { const div1 = document.getElementById("titFiltro"); const div2 = document.getElementById("filtros"); if (window.matchMedia("(max-width: 768px)").matches) { div1.addEventListener("click", () => { if (div2.style.display === "none") { div2.style.display = "block"; } else { div2.style.display = "none"; } }); } });