Skip to content

Instantly share code, notes, and snippets.

@psaitu
Last active August 29, 2015 14:13
Show Gist options
  • Select an option

  • Save psaitu/4a4efa8587f5ea76a1c1 to your computer and use it in GitHub Desktop.

Select an option

Save psaitu/4a4efa8587f5ea76a1c1 to your computer and use it in GitHub Desktop.
$( '.tree li' ).each( function() {
if( $( this ).children( 'ul' ).length > 0 ) {
$( this ).addClass( 'parent' );
}
});
$( '.tree li.parent > a' ).click( function( ) {
$( this ).parent().toggleClass( 'active' );
$( this ).parent().children( 'ul' ).slideToggle( 'fast' );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment