Aashish_Nepal e22a2beaa6 Updated
2024-12-11 16:39:59 +05:45

20 lines
579 B
JavaScript

document.querySelectorAll('.nav-link').forEach(function(link) {
link.addEventListener('click', function(e) {
const navbarCollapse = document.getElementById('navbarSupportedContent');
const bsCollapse = new bootstrap.Collapse(navbarCollapse, {
toggle: false
});
bsCollapse.hide();
const targetId = this.getAttribute('href').split('#')[1];
const targetElement = document.getElementById(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
}
});
});