Skip to content

Instantly share code, notes, and snippets.

@pablolobos
Created January 22, 2014 14:20
Show Gist options
  • Save pablolobos/8559470 to your computer and use it in GitHub Desktop.
Save pablolobos/8559470 to your computer and use it in GitHub Desktop.
javascript_accordion.js
// Close all Panels
$('#accordion').find('.content').hide();
// Accordion
$('#accordion').find('.accordion-header').click(function(){
var next = $(this).next();
next.slideToggle('fast');
$('.content').not(next).slideUp('fast');
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment