wonderstruck / script.js
markjr's picture
change names to WONDERSTRUCK ,
712b890 verified
Raw
History Blame Contribute Delete
437 Bytes
// 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'
});
});
});
});