Skip to content

Instantly share code, notes, and snippets.

@mkormendy
Created October 8, 2015 20:56
Show Gist options
  • Save mkormendy/8b74e77ca426346e17b3 to your computer and use it in GitHub Desktop.
Save mkormendy/8b74e77ca426346e17b3 to your computer and use it in GitHub Desktop.
Expands/Collapses section subpage lists
// expands/collapses section subpage lists
$(".pil_subMenuHeader").click( function(){
$(".submenu", this).slideToggle();
$(this).toggleClass('rotate');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment