Spaces:
Running
Running
File size: 487 Bytes
fe3d38d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
// Shared JavaScript functionality
document.addEventListener('DOMContentLoaded', function() {
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Add any shared JS functionality here
}); |