dragstart
- A drag has been initiated, with the dragged element as the event target.
drag
- The mouse has moved, with the dragged element as the event target.
dragenter
- The dragged element has been moved into a drop listener, with the drop listener element as the event target.
dragover
- The dragged element has been moved over a drop listener, with the drop listener element as the event target. Since the default behavior is to cancel drops, returning
false or calling preventDefault() in the event handler indicates that a drop is allowed here.
dragleave
- The dragged element has been moved out of a drop listener, with the drop listener element as the event target.
drop
- The dragged element has been successfully dropped on a drop listener, with the drop listener element as the event target.
dragend
- A drag has been ended, successfully or not, with the dragged element as the event target.