Skip to content

Instantly share code, notes, and snippets.

@smonteverdi
Created March 7, 2012 15:49
Show Gist options
  • Select an option

  • Save smonteverdi/1993903 to your computer and use it in GitHub Desktop.

Select an option

Save smonteverdi/1993903 to your computer and use it in GitHub Desktop.
jQuery: Accordion show/hide
var dd = $('dd');
dd.filter(':nth-child(n+4)').addClass('hide');
$('dt').on('click',function(){
$(this)
.next()
.slideDown('fast')
.siblings('dd')
.slideUp('fast');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment