Skip to content

Instantly share code, notes, and snippets.

@RedWolves
Created May 5, 2010 20:46
Show Gist options
  • Save RedWolves/391404 to your computer and use it in GitHub Desktop.
Save RedWolves/391404 to your computer and use it in GitHub Desktop.
You can haz .fadeToggle()!
jQuery.fn.fadeToggle = function(speed, easing, callback) {
return this.animate({opacity: 'toggle'}, speed, easing, callback);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment