show/hide this revision's text 3 edited code markdown

Hi, I am using the JQuery libs to implement drag and drop.

How do I get at the element that is being dragged when it is dropped?

I want to get the id of the image inside the div. The following element is dragged:

I have the standard dropped function from their example

$(".drop").droppable({
                 accept: ".block",
                 activeClass: 'droppable-active',
                 hoverClass: 'droppable-hover',
                 drop: function(ev, ui) { }
});

I have tried various ui.id etc which doesnt seem to work.

Thanks,

show/hide this revision's text 2 edited tags
show/hide this revision's text 1

JQuery drag and drop - how to get at element being dragged

Hi, I am using the JQuery libs to implement drag and drop.

How do I get at the element that is being dragged when it is dropped?

I want to get the id of the image inside the div. The following element is dragged:

I have the standard dropped function from their example

$(".drop").droppable({ accept: ".block", activeClass: 'droppable-active', hoverClass: 'droppable-hover', drop: function(ev, ui) { }

I have tried various ui.id etc which doesnt seem to work.

Thanks,