Hi all,
I'm doing this :
source.offset({ top: top + 10 + (current)*60 , left: left + 10 });
What I would like to do is to animate the move. So I've done :
source.animate({left: left + 10, top:top + 10 + (current)*60}, 500, function() { // Animation complete.});
But it's not going to the right place. Although with the first version it was ok.
What am I doing wrong ?
Thanks for your help