Skip to content

Instantly share code, notes, and snippets.

@jrvaja
Created June 21, 2012 05:12
Show Gist options
  • Save jrvaja/2963995 to your computer and use it in GitHub Desktop.
Save jrvaja/2963995 to your computer and use it in GitHub Desktop.
Snippet:Accordion
/*************************************************
Accordion
*************************************************/
$('dd').filter(':nth-child(n+4)').addClass('hide');
// $('dd').addClass('hide');
$('dl').on('click','dt',function(){
$(this)
.next()
.slideDown(600)
.siblings('dd')
.slideUp(600);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment