i have 1 draggable div and 2 droppable divs. those 2 droppable divs also are draggable. so there might be a chance those 2 divs are overlapped. in that sitchuation when i drag the draggable div and drop to the overlapped divs. is there anyway to make sure it drop on the top one?
|
|
I'm not super-clear on exactly what you're working with, but (if I understand what you're asking) the z-index of each div should be the key property you need. Does the drop event of both droppables fire if the droppables overlap? It seems like that's the actual problem you're trying to solve. The droppable that's "the top one" will have the higher z-index (by definition of being "on top"). If you get 2 drops firing, within each function bound to the drop event, you can check to make sure that the droppable that fired the drop is the one with the higher z-index, and just return if it's not. Is this what you're trying to do? |
||||||||
|
