Skip to content

Instantly share code, notes, and snippets.

@Korveld
Created May 22, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Korveld/1d9a3a07bcd4c732da65 to your computer and use it in GitHub Desktop.
Save Korveld/1d9a3a07bcd4c732da65 to your computer and use it in GitHub Desktop.
Toggle content
$('<span>+</span>').insertAfter('li.menu-item-has-children a');
$("li.menu-item-has-children").click(function() {
$(this).find('span').text(function(i, text) {
return text === "+" ? "-" : "+";
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment