Skip to content

Instantly share code, notes, and snippets.

@jongamble
Created May 13, 2013 21:06
Show Gist options
  • Save jongamble/5571531 to your computer and use it in GitHub Desktop.
Save jongamble/5571531 to your computer and use it in GitHub Desktop.
Short jQuery Accordian
jQuery(document).ready(function($) {
var allPanels = $('.termContent').hide();
$('.termHeader').on('click', function(){
$('.termContent.active').removeClass('active').hide(400);
$(this).siblings('.termContent').not('.active').slideToggle().addClass('active');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment