Skip to main content

Bug Tracker

Side navigation

Ticket #3126: slidefade_patch.js


File slidefade_patch.js, 0.3 KB (added by mike.helgeson, July 03, 2008 05:21PM UTC)
jQuery.each({
	slideDown: { height:"show" },
	slideUp: { height: "hide" },
	slideToggle: { height: "toggle" },
	fadeIn: { opacity: "show" },
	fadeOut: { opacity: "hide" },
	}, function( name, props ){
	jQuery.fn[ name ] = function(speed,callback){
		return this.animate( props, speed, callback );
		};			
	});

Download in other formats:

Original Format