Skip to content

Instantly share code, notes, and snippets.

@andipaetzold
Last active August 29, 2015 14:24
Show Gist options
  • Save andipaetzold/8f43fd653d740fc8b939 to your computer and use it in GitHub Desktop.
Save andipaetzold/8f43fd653d740fc8b939 to your computer and use it in GitHub Desktop.
Bootstrap Navbar Hover
// https://scotch.io/bar-talk/bootstrap-3-tips-and-tricks-you-might-not-know#how-to-enable-bootstrap-3-hover-dropdowns
$('.dropdown-toggle').click(function() {
var location = $(this).attr('href');
window.location.href = location;
return false;
});
// https://scotch.io/bar-talk/bootstrap-3-tips-and-tricks-you-might-not-know#how-to-enable-bootstrap-3-hover-dropdowns
@media only screen and (min-width: $screen-sm-min) {
.dropdown:hover .dropdown-menu {
display: block;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment