Skip to content

Instantly share code, notes, and snippets.

@quoidautre
Created April 5, 2012 07:37
Show Gist options
  • Select an option

  • Save quoidautre/2308791 to your computer and use it in GitHub Desktop.

Select an option

Save quoidautre/2308791 to your computer and use it in GitHub Desktop.
JS: Fade toggle
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