Skip to content

Instantly share code, notes, and snippets.

@hsquareweb
Created November 1, 2013 22:59
Show Gist options
  • Select an option

  • Save hsquareweb/7273308 to your computer and use it in GitHub Desktop.

Select an option

Save hsquareweb/7273308 to your computer and use it in GitHub Desktop.
Simple Toggle
$(".element a").click(function () {
$(".elementToggled").toggle();
return false;
}).next().hide();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment