coffee-shop-new / script.js
akhaliq's picture
akhaliq HF Staff
Upload folder using huggingface_hub
37996a6 verified
raw
history blame contribute delete
305 Bytes
document.querySelectorAll('nav ul li a').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
document.querySelector(targetId).scrollIntoView({
behavior: 'smooth'
});
});
});