Flatlogic Bot e59c8581a5 1.0.1
2025-10-15 18:48:09 +00:00

10 lines
273 B
JavaScript

document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});