Skip to content

Instantly share code, notes, and snippets.

@alextegelid
Last active October 25, 2016 08:44
Show Gist options
  • Save alextegelid/a4dd0cadc773135dfc094941f33063d0 to your computer and use it in GitHub Desktop.
Save alextegelid/a4dd0cadc773135dfc094941f33063d0 to your computer and use it in GitHub Desktop.
// Original code from Chris Coyier - https://css-tricks.com/snippets/jquery/combine-slide-and-fade-functions/
jQuery(document).ready(function($) {
$.fn.slideFadeToggle = function(speed, easing, callback) {
return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback);
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment