CoolFace
Apppublic

MethodFM/vitalmethod-functional-medicine

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
script.js13 linesDownload Raw Back to root
1document.addEventListener('DOMContentLoaded', function() {2    // Smooth scrolling for anchor links3    document.querySelectorAll('a[href^="#"]').forEach(anchor => {4        anchor.addEventListener('click', function (e) {5            e.preventDefault();6            document.querySelector(this.getAttribute('href')).scrollIntoView({7                behavior: 'smooth'8            });9        });10    });11 12    // Mobile menu toggle functionality will be handled by the navbar component13});