From 62a251a0cf8b8652082da3d5a72b6c6e2b120914 Mon Sep 17 00:00:00 2001 From: Brandon Aaron Date: Wed, 18 Mar 2009 14:58:06 +0000 Subject: [PATCH] fix for #4204, fadeTo shows hidden elements before animating --- src/fx.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fx.js b/src/fx.js index c949bdc..45c2389 100644 --- a/src/fx.js +++ b/src/fx.js @@ -95,7 +95,8 @@ jQuery.fn.extend({ }, fadeTo: function(speed,to,callback){ - return this.animate({opacity: to}, speed, callback); + return this.filter(":hidden").css('opacity', 0).show().end() + .animate({opacity: to}, speed, callback); }, animate: function( prop, speed, easing, callback ) { -- 1.7.10.4