Skip to content

Instantly share code, notes, and snippets.

@bertomartin
Forked from tessalt/collapse.js
Created March 8, 2013 19:15
Show Gist options
  • Save bertomartin/5119015 to your computer and use it in GitHub Desktop.
Save bertomartin/5119015 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