Event Delegation
Beispiel
document.querySelector('.nav__links').addEventListener('click', (e) => {
e.preventDefault();
if (e.target.classList.contains('nav__link')) {
const id = e.target.getAttribute('href');
document.querySelector(id).scrollIntoView({ behavior: 'smooth' });
}
});Last updated