12 events found.
document.addEventListener('DOMContentLoaded', function() { const links = document.querySelectorAll('a[href*="#"]'); links.forEach(link => { link.addEventListener('click', function(e) { const targetId = this.getAttribute('href').split('#')[1]; const target = document.getElementById(targetId); if (target) { e.preventDefault(); target.scrollIntoView({ behavior: 'smooth' }); } }); }); });