Skip to content

Instantly share code, notes, and snippets.

@octavioamu
Last active December 11, 2015 23:09
Show Gist options
  • Save octavioamu/4674937 to your computer and use it in GitHub Desktop.
Save octavioamu/4674937 to your computer and use it in GitHub Desktop.
javaScript:collapsible
$(".collapsible-content").hide();
$(".collapsible-head").toggle(function(){
$(this).addClass("active");
}, function () {
$(this).removeClass("active");
});
$(".collapsible-head").off('click').on('click',function(){
$(this).next(".collapsible-content").slideToggle(600);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment