My chrome version is: 18.0.1025.168 m, jQuery version is 1.7.2.
However, when I try to animate:
$("#xyz").animate({ 'margin-left':'500px' }, 500, function(){
$("#abc").animate({ 'margin-left':'300px' }, 500);
});
Both xyzand abcexpect a smooth and fast in all browsers (IE, FF, and the Chrome) on the client side (on my computer).
But, when I upload it to the server, IE and FF expect smoothly, as usual. Chrome animates seamlessly abc. But Chrome fights / gets in the way during the animation xyz.
source
share