I would like to smooth the chaining of some jquery.animate functions.
Here is a jsfiddle where I describe the problem : http://jsfiddle.net/xavier_seignard/KTxbb/4/<
You can change the speed for a more "fine" animation, you see that stop because the speed it's too fast and different size to cover:
function initPage() { $.each(json, function() { $("#point").animate({ left: this.x, top: this.y }, 1000, 'linear'); }); }