Is there a way to get the id (or some other attribute value) from the element being dragged from, when an element is being dropped?
For instance, on the left, I have a stack of divs that I can drop images into. On the right I have a div that holds the images. When I drag an image from the right to a div on the left, I can get info on what was dragged [image name] and what it was dropped on [div id].
If I now want to drag an image from a div on the left to the div on the right, how can I get the id of the div that the image was on when I drop the image on the div on the right.
Sorry if this is confusing.