[jQuery] Re: position of draggable div

2009-01-24 Thread Richard D. Worth
See http://docs.jquery.com/UI/Draggable/draggable#options For example $("#draggable").draggable({ drag: function(event, ui) { console.log(ui.position.top, ui.position.left); } }); - Richard On Sat, Jan 24, 2009 at 6:51 PM, merihsaka...@yahoo.com < merihsaka...@yahoo.com> wrote: > > Is

[jQuery] Re: position of draggable div

2009-01-24 Thread merihsaka...@yahoo.com
Is there anyone who knows haw can I get the new positon (x,y) of the draggable div ?