Skip to content

Instantly share code, notes, and snippets.

@jpsullivan
Created July 17, 2015 15:10
Show Gist options
  • Save jpsullivan/15b1a7d13306e7b3c5b0 to your computer and use it in GitHub Desktop.
Save jpsullivan/15b1a7d13306e7b3c5b0 to your computer and use it in GitHub Desktop.
javascript functions
$('.dropdown-toggle').click(function() {
$('.dropdown-menu').toggle();
});
or ...
var toggleDropdown = function () {
$('.dropdown-menu').toggle();
};
$('.dropdown-toggle').click(toggleDropdown);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment