diff options
Diffstat (limited to 'src/fx.js')
-rw-r--r-- | src/fx.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 ) { |