Skip to content

Instantly share code, notes, and snippets.

@oguzhanaslan
Created June 2, 2015 12:17
Show Gist options
  • Save oguzhanaslan/51bdb4ff64cd6f64bff1 to your computer and use it in GitHub Desktop.
Save oguzhanaslan/51bdb4ff64cd6f64bff1 to your computer and use it in GitHub Desktop.
Bootstrap Dropdown menu clickable in navbar
$('body').on('show.bs.dropdown', function (e) {
$(e.relatedTarget).addClass('disabled')
});
$('body').on('hide.bs.dropdown', function (e) {
$(e.relatedTarget).removeClass('disabled')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment