akhaliq's picture
akhaliq HF Staff
Upload folder using huggingface_hub
e73702a verified
raw
history blame contribute delete
459 Bytes
document.addEventListener('DOMContentLoaded', function() {
const navLinks = document.querySelectorAll('nav a');
navLinks.forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href').substring(1);
const targetSection = document.getElementById(targetId);
targetSection.scrollIntoView({ behavior: 'smooth' });
});
});
});