Skip to content

Instantly share code, notes, and snippets.

@spdustin
Created July 18, 2012 19:38
Show Gist options
  • Save spdustin/3138362 to your computer and use it in GitHub Desktop.
Save spdustin/3138362 to your computer and use it in GitHub Desktop.
QL Toggle
$('div.s4-ql ul.root > li > a')
.on(
'click',
function(e) {
e.preventDefault();
$(this).next().toggle();
}
)
;
@spdustin
Copy link
Author

First pass, brutal

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment