Is there a way to detect when an HTML element is being dragged and dropped specifically for Safari events?
For drag and drop functionality on Safari iPad, do I need to manually detect mousemove events on HTML elements and update their positions as the mouse moves, or does the browser handle this automatically through events?
Additionally, are there specific events triggered when dropping one object onto another? Do both objects trigger an event (such as ItemDroppedEvent) for the dragged element and the element that receives the dropped object?