It seems we can’t find what you’re looking for. Perhaps searching can help.
window. addEventListener('scroll', function () {
document.body.classList.add('sidebar-loaded');
}, { once: true });document.querySelectorAll('.dropdown > a').forEach(item => {
item.addEventListener('click', function(e) {
if (window.innerWidth < 768) {
e.preventDefault();
this.nextElementSibling.classList.toggle('show');
}
});
});
.dropdown-menu.show {
display: block;
}