Last active
October 25, 2016 08:44
-
-
Save alextegelid/a4dd0cadc773135dfc094941f33063d0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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