Is it possible to receive multiple over() notifications during dragging
I have a scenario where a <div> is used as the droppable for a drag-
operation. Now, the actual position of the drop is relevant, e.g.
before any children of the droppable, between children, or at the end.
During dragging, I would like to highlight the position of the cursor.
This may change during dragging, as the user drags the draggable from
the top to the bottom of the droppable. However, over() is only called
once, so after the cursor moves into the droppable, over() is not
called on cursor movement().
The reason seems to be inside the drag() function of $.ui.ddmanager
(end of ui.droppable.js), where the logic calls over() or out() only
on changed values.
a) Is there a way to achieve what I want?
b) If not, would anyone mind if I created / suggested a patch?
/ELY