34768-vm/assets/js/main.js
Flatlogic Bot 3584573aa8 version 0
2025-10-08 16:03:18 +00:00

10 lines
309 B
JavaScript

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