Last active
December 2, 2023 18:57
-
-
Save softiconic/eb43d0e17cdc17645351422a344384be to your computer and use it in GitHub Desktop.
Script for a navigation menu.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.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