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'
});
});
});
});