Draggable doesn't provide that option. Here's how you can do it:
$("#foo").draggable({
start: function(e, ui) {
$(ui.helper).addClass('dragging');
},
stop: function(e, ui) {
$(ui.helper).removeClass('dragging');
}
});
- Richard
Richard D. Worth
http://rdworth.org/
On Fri, May 23, 2008 at 1:12 PM, Liam Byrne <[EMAIL PROTECTED]> wrote:
>
> Is there an option within the draggable function to allow you to add a
> border to a cloned "currently-being-dragged" object, similar to the way that
> "cursor" works ?
>
> Thanks,
> Liam
>