35166-vm/assets/js/main.js
2025-10-24 06:14:17 +00:00

14 lines
456 B
JavaScript

document.addEventListener('DOMContentLoaded', function () {
// Smooth scroll for anchor links
const viewCompetitionsBtn = document.querySelector('a[href="#competitions"]');
if (viewCompetitionsBtn) {
viewCompetitionsBtn.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector('#competitions').scrollIntoView({
behavior: 'smooth'
});
});
}
});