Skip to content

Instantly share code, notes, and snippets.

@tessalt
Created February 17, 2013 03:42
Show Gist options
  • Save tessalt/4970028 to your computer and use it in GitHub Desktop.
Save tessalt/4970028 to your computer and use it in GitHub Desktop.
$(".collapse-tree a").click(function() {
var listItem = $(this).parent("li");
listItem.children("ul").slideToggle();
$(this).toggleClass("open");
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment