Skip to content

Instantly share code, notes, and snippets.

@benschac
Created November 2, 2013 21:23
Show Gist options
  • Save benschac/7283657 to your computer and use it in GitHub Desktop.
Save benschac/7283657 to your computer and use it in GitHub Desktop.
jquery
jQuery(document).ready(function($) {
$("li.dropdown a").click(function(e){
$(this).next('ul.dropdown-menu').css("display", "block");
e.stopPropagation();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment