document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { e.preventDefault(); const targetId = this.getAttribute("href"); window.location.href = `${window.location.origin}/${targetId}`; }); });