CoolFace
Apppublic

Calvinzulu/deepsite-explorer

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
script.js14 linesDownload Raw Back to root
1// Handle theme toggle if needed2document.addEventListener('DOMContentLoaded', () => {3    // Smooth scrolling for anchor links4    document.querySelectorAll('a[href^="#"]').forEach(anchor => {5        anchor.addEventListener('click', function (e) {6            e.preventDefault();7            document.querySelector(this.getAttribute('href')).scrollIntoView({8                behavior: 'smooth'9            });10        });11    });12 13    // Add any other global JavaScript functionality here14});