Skip to content

Instantly share code, notes, and snippets.

@softiconic
Last active December 2, 2023 18:57
Show Gist options
  • Save softiconic/eb43d0e17cdc17645351422a344384be to your computer and use it in GitHub Desktop.
Save softiconic/eb43d0e17cdc17645351422a344384be to your computer and use it in GitHub Desktop.
Script for a navigation menu.
$('.dropdown-menu a.dropdown-toggle').on('click', function(e) {
if (!$(this).next().hasClass('show')) {
$(this).parents('.dropdown-menu').first().find('.show').removeClass("show");
}
var $subMenu = $(this).next(".dropdown-menu");
$subMenu.toggleClass('show');
$(this).parents('li.nav-item.dropdown.show').on('hidden.bs.dropdown', function(e) {
$('.dropdown-submenu .show').removeClass("show");
});
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment