Reachy-Mini-DRAFT / script.js
Anne-Charlotte's picture
Update script.js
3feef39 verified
raw
history blame contribute delete
413 Bytes
// Smooth scroll for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});