Skip to content

Instantly share code, notes, and snippets.

@pixelcoder
Created April 16, 2015 14:04
Show Gist options
  • Save pixelcoder/0cbccdb240c8578380b3 to your computer and use it in GitHub Desktop.
Save pixelcoder/0cbccdb240c8578380b3 to your computer and use it in GitHub Desktop.
jQuery: Toggle sidebar widgets
$('a.toggle-widgets').delegate($(this), 'click', function(e){
e.preventDefault();
$('div.widgets').slideToggle();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment