Skip to content

Instantly share code, notes, and snippets.

@tevashov
Last active October 27, 2022 21:52
Show Gist options
  • Select an option

  • Save tevashov/5172446 to your computer and use it in GitHub Desktop.

Select an option

Save tevashov/5172446 to your computer and use it in GitHub Desktop.
Combine Slide and Fade Functions #jQuery
$.fn.slideFadeToggle  = function(speed, easing, callback) {
        return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback);
};
// Usage:
$("#something").click(function() {
   $(this).slideFadeToggle();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment