Skip to content

Instantly share code, notes, and snippets.

Created September 11, 2013 13:26
Show Gist options
  • Save anonymous/6523570 to your computer and use it in GitHub Desktop.
Save anonymous/6523570 to your computer and use it in GitHub Desktop.
Super simple accordion / slide-toggle
App.accordion('.accordion','.item');
App.accordion = function(container,item){
var item_selector = container+' '+item;
$(item_selector+' .header').css('cursor','pointer');
$(item_selector+' .header').on('click',function(){
$(this).closest(item).find('.body').slideToggle();
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment