[jQuery] jQuery Animation

[jQuery] jQuery Animation

I've written the following plugin, but it's failing on the latest SVN.
Is this a bug, or have I made a wrong assumption about the animate
function?
$.fn.positionTo = function(speed,o,callback){
var l = o.left || "0px";
var t = o.top || "0px";
return this.animate({left: l, top:t}, speed, callback);
};
~Sean
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/