JQuery drag and drop - how to get at element being dragged - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T04:14:16Zhttp://stackoverflow.com/feeds/question/197489http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/197489/jquery-drag-and-drop-how-to-get-at-element-being-dragged2JQuery drag and drop - how to get at element being draggedalexmac2008-10-13T12:51:32Z2009-03-18T23:11:42Z
<p>Hi,
I am using the JQuery libs to implement drag and drop. </p>
<p>How do I get at the element that is being dragged when it is dropped?</p>
<p>I want to get the id of the image inside the div. The following element is dragged:</p>
<p>I have the standard dropped function from their example</p>
<pre><code>$(".drop").droppable({
accept: ".block",
activeClass: 'droppable-active',
hoverClass: 'droppable-hover',
drop: function(ev, ui) { }
});
</code></pre>
<p>I have tried various ui.id etc which doesnt seem to work. </p>
<p>Thanks,</p>
http://stackoverflow.com/questions/197489/jquery-drag-and-drop-how-to-get-at-element-being-dragged/197505#1975058Answer by redsquare for JQuery drag and drop - how to get at element being draggedredsquare2008-10-13T12:57:00Z2008-10-13T13:22:03Z<p>Is it not the ui.draggable?</p>
<p>If you go here (in Firefox and assuming you have firebug) and look in the firebug console youll see I am doing a console.dir of the ui.draggable object which is the div being dragged</p>
<p><a href="http://jsbin.com/ixizi" rel="nofollow">http://jsbin.com/ixizi</a></p>
<p>Therefore the code you need in the drop function is</p>
<pre><code> drop: function(ev, ui) {
//to get the id
//ui.draggable.attr('id') or ui.draggable.get(0).id or ui.draggable[0].id
console.dir(ui.draggable)
}
</code></pre>
http://stackoverflow.com/questions/197489/jquery-drag-and-drop-how-to-get-at-element-being-dragged/197541#1975413Answer by Adam Bellaire for JQuery drag and drop - how to get at element being draggedAdam Bellaire2008-10-13T13:09:04Z2008-10-13T13:09:04Z<p>redquare is right, inside your function refer to <code>ui.draggable</code>:</p>
<pre><code>$(".drop").droppable({ accept: ".block",
activeClass: 'droppable-active',
hoverClass: 'droppable-hover',
drop: function(ev, ui) {
//do something with ui.draggable here
}
});
</code></pre>
<p>That property points to the thing being dragged.</p>
<p>Note that if you're using cloned "helpers", the draggable will be the cloned copy, not the original.</p>
http://stackoverflow.com/questions/197489/jquery-drag-and-drop-how-to-get-at-element-being-dragged/660456#6604561Answer by Zak for JQuery drag and drop - how to get at element being draggedZak2009-03-18T23:11:42Z2009-03-18T23:11:42Z<p>$(ui.draggable).attr("id")</p>