I’m learning to use the jQuery UI Draggable Widget. I need to do some special handling in response to the Drag event.
From my Drag event handler, is there a way to get the current drop target–that is, the element that the mouse is currently hovering over?
In drag event there is no way to get current hovering element, however you can get this from “Droppable” drop event. Check this JQFAQ.com topic, which will explain how to do this.