Skip to content

Instantly share code, notes, and snippets.

@dsebao
Created October 28, 2013 14:21
Show Gist options
  • Save dsebao/7197567 to your computer and use it in GitHub Desktop.
Save dsebao/7197567 to your computer and use it in GitHub Desktop.
Accordion content jquery
$(".acordion-title").click(function() {
$nextdiv = $(this).next("div");
if($nextdiv.is(":visible")){
$nextdiv.slideUp();
$('span',this).removeClass('menos');
} else {
$(".acordion-desc").slideUp();
$(this).parent().find('.acordion-title span').removeClass('menos');
$('span',this).addClass('menos');
$nextdiv.slideToggle();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment