[jQuery] Re: Is there a way to update an element while you're dragging it?

2008-10-31 Thread tecmo
I got it. The dragged item is cloned (this.helper)

[jQuery] Re: Is there a way to update an element while you're dragging it?

2008-10-31 Thread mbraybrook
Try looking at the 'drag' option of draggable, it provides a 'Function that gets called when the mouse is moved during the dragging.' something like: $(".item").draggable({ drag(function() $(this).text('new text'); ) }); I've not tested, but this certainly seems to offer the answer. HTH M