CrewAI_Webmaster / script.js
ridvanyigit's picture
Upload folder using huggingface_hub
d6c90cc verified
raw
history blame contribute delete
520 Bytes
document.addEventListener('DOMContentLoaded', function() {
const links = document.querySelectorAll('nav ul li a');
links.forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault();
const targetId = this.getAttribute('href').substring(1);
const targetElement = document.getElementById(targetId);
window.scrollTo({
top: targetElement.offsetTop,
behavior: 'smooth'
});
});
});
});