X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Ffx.js;h=45c2389cd140f7e18f47a1d2c0d2a5b293c190c9;hb=62a251a0cf8b8652082da3d5a72b6c6e2b120914;hp=c949bdc6a956cb33c35d7a9f08bc9cc9b94a781a;hpb=ace13387c8d7b5823a580db0f1b2aafac515b9f5;p=jquery.git 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 ) {