35022-vm/assets/js/main.js
Flatlogic Bot 5f94a53703 version 1
2025-10-17 06:56:22 +00:00

14 lines
408 B
JavaScript

document.addEventListener('DOMContentLoaded', function () {
// 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'
});
});
});
});