Skip to content

Instantly share code, notes, and snippets.

@NickBusey
Created August 25, 2011 21:51
Show Gist options
  • Save NickBusey/1172084 to your computer and use it in GitHub Desktop.
Save NickBusey/1172084 to your computer and use it in GitHub Desktop.
Dead Simple jQuery Toggle
$('.toggleLink').live('click',function(e) {
e.preventDefault();
$(this).siblings('.toggleTarget').slideToggle();
});
<div>
<a href='#' class='toggleLink'></a>
<div class='toggleTarget'></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment