jQueryUI droppable, stop propagation to overlapped sibling
问题 As you can see here: http://jsfiddle.net/rA4CB/6/ When I make the drop in the overlapped area it is received in both droppables, greedy doesn't work when the items are siblings. Is there any way to block the reception on droppables lower in the zIndex? BTW, mouseOver won't fire for the droppable element as the mouse is actually over the draggable element. relevant JS: $(function() { $( "#draggable" ).draggable(); $( "#droppable" ).droppable({ tolerance:'pointer', drop: function( event, ui ) {