Skip to content

Instantly share code, notes, and snippets.

@the-affy
Created July 2, 2014 06:28
Show Gist options
  • Select an option

  • Save the-affy/631558f1a3af5c0954cb to your computer and use it in GitHub Desktop.

Select an option

Save the-affy/631558f1a3af5c0954cb to your computer and use it in GitHub Desktop.
bootstrap3 on hover dropdown with link supported in parent
<script>
jQuery(function($) {
$('.navbar .dropdown').hover(function() {
$(this).find('.dropdown-menu').first().stop(true, true).delay(250).slideDown();
}, function() {
$(this).find('.dropdown-menu').first().stop(true, true).delay(100).slideUp();
});
$('.navbar .dropdown > a').click(function(){
location.href = this.href;
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment