Hola, tengo una navegación con desplazamiento hacia VIEW, pero quiero arreglar cuando hago clic en href como index.html no funciona, cualquier solución
document .querySelector(".navigation__ul") .addEventListener("click", function (e) { e.preventDefault(); if (e.target.classList.contains("navigation__link")) { const id = e.target.getAttribute("href"); document.querySelector(id).scrollIntoView({ behavior: "smooth" }); navigation.classList.toggle("open"); overlay.classList.toggle("nav__overlay"); } if (!navigation.classList.contains("open")) { hamburger.classList.remove("is-active"); } });