I am using the jQuery library 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:
<div class="block">
<asp:Image ID="Image9" AlternateText="10/12/2008 - Retina" Width=81 Height=84 ImageUrl="~/uploads/ImageModifier/retina.jpg" runat=server />
</div>
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 doesn't seem to work.
question from:
https://stackoverflow.com/questions/197489/jquery-drag-and-drop-how-to-get-at-element-being-dragged 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…