mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
15 lines
378 B
JavaScript
15 lines
378 B
JavaScript
document.querySelectorAll('a[href^="#"]').forEach((anchor) => {
|
|
anchor.addEventListener('click', function (e) {
|
|
e.preventDefault();
|
|
|
|
const target = document.querySelector(this.getAttribute('href'));
|
|
|
|
// Check if the target element exists
|
|
if (target) {
|
|
window.scrollTo({
|
|
top: target.offsetTop,
|
|
behavior: 'smooth',
|
|
});
|
|
}
|
|
});
|
|
}); |