File size: 305 Bytes
37996a6
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
document.querySelectorAll('nav ul li a').forEach(anchor => {
    anchor.addEventListener('click', function (e) {
        e.preventDefault();
        const targetId = this.getAttribute('href');
        document.querySelector(targetId).scrollIntoView({
            behavior: 'smooth'
        });
    });
});