JQuery drag and drop - how to get at element being dragged - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T04:14:16Z http://stackoverflow.com/feeds/question/197489 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/197489/jquery-drag-and-drop-how-to-get-at-element-being-dragged 2 JQuery drag and drop - how to get at element being dragged alexmac 2008-10-13T12:51:32Z 2009-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#197505 8 Answer by redsquare for JQuery drag and drop - how to get at element being dragged redsquare 2008-10-13T12:57:00Z 2008-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#197541 3 Answer by Adam Bellaire for JQuery drag and drop - how to get at element being dragged Adam Bellaire 2008-10-13T13:09:04Z 2008-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#660456 1 Answer by Zak for JQuery drag and drop - how to get at element being dragged Zak 2009-03-18T23:11:42Z 2009-03-18T23:11:42Z <p>$(ui.draggable).attr("id")</p>