14 lines
456 B
JavaScript
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'
|
|
});
|
|
});
|
|
}
|
|
});
|