samuel-philipp.de/src/js/main.js

9 lines
272 B
JavaScript
Raw Permalink Normal View History

2023-05-10 18:46:28 +00:00
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
2016-10-28 17:05:19 +00:00
2023-05-10 18:46:28 +00:00
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});