Skip to content

Instantly share code, notes, and snippets.

@tessalt
Created November 6, 2012 03:50
Show Gist options
  • Save tessalt/4022437 to your computer and use it in GitHub Desktop.
Save tessalt/4022437 to your computer and use it in GitHub Desktop.
PROPER FUCKING ACCORDIONS BITCHEZ
$(".accordion_toggle").live("click", function(e){
e.preventDefault();
$(".accordion_toggle").removeClass("active");
$(".accordion_content").slideUp();
if($(this).next().is(':hidden') == true) {
$(this).addClass("active");
$(this).next().slideDown();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment