Skip to content

Instantly share code, notes, and snippets.

@theneubeck
Created February 10, 2010 16:12
Show Gist options
  • Save theneubeck/300477 to your computer and use it in GitHub Desktop.
Save theneubeck/300477 to your computer and use it in GitHub Desktop.
jQuery Toggle
$("#the-link").toggle(function(){
$(this).text("Show");
// hide a list of related items to
$(this).parents(".my-list").find("li").hide();
}, function(){
$(this).text("Hide");
$(this).parents(".my-list").find("li").show();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment