Spaces:
Running
Running
File size: 437 Bytes
712b890 |
1 2 3 4 5 6 7 8 9 10 11 12 |
// Shared JavaScript across all pages
document.addEventListener('DOMContentLoaded', () => {
// Smooth scroll for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
}); |