Files
Personal-Site-RVNWD/site.js
T
2024-11-30 17:01:43 -08:00

9 lines
263 B
JavaScript

document.querySelectorAll('.nav-link').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});