Displaying 1 result from an estimated 1 matches for "mydropb".
2006 Mar 29
3
droppables
...e one question for now.
The droppable onDrop event seems to pass in 2 objects, the dropped
object, and the container the object was dropped on. My question is
this, can I figure out the container the dropped object came from?
For example:
1 draggable (id: myDraggable)
2 divs (ids: myDropA, myDropB) which are both droppables accepting
the draggable
myDraggable starts as a child of myDropA
I move myDraggable from myDropA to myDropB
At this point in the myDropB onDrop, I want to know about myDropA,
myDropB and myDraggable. Currently I think I can only see myDropB,
and myDraggable
F...