CoolFace
Apppublic

Dmitr-y/scientificpulse-journal-hub

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
script.js12 linesDownload Raw Back to root
1// Shared JavaScript functionality2console.log('ScientificPulse Journal Hub loaded');3 4// Smooth scrolling for anchor links5document.querySelectorAll('a[href^="#"]').forEach(anchor => {6    anchor.addEventListener('click', function (e) {7        e.preventDefault();8        document.querySelector(this.getAttribute('href')).scrollIntoView({9            behavior: 'smooth'10        });11    });12});