Tutorial Combine Slide and Fade Functions
$.fn.slideFadeToggle = function(speed, easing, callback) { return this.animate({opacity: 'toggle', height: 'toggle'...
https://iskablogs.blogspot.com/2014/03/tutorial-combine-slide-and-fade.html
$.fn.slideFadeToggle = function(speed, easing, callback) {
return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback);
};
Usage
$("#something").click(function() {
$(this).slideFadeToggle();
});
return this.animate({opacity: 'toggle', height: 'toggle'}, speed, easing, callback);
};
Usage
$("#something").click(function() {
$(this).slideFadeToggle();
});