This feature is well established and works across many devices and browser versions. It’s been available across browsers since September 2020.
The DragEvent interface is a DOM event that represents a drag and drop interaction. The user initiates a drag by placing a pointer device (such as a mouse) on the touch surface and then dragging the pointer to a new location (such as another DOM element). Applications are free to interpret a drag and drop interaction in an application-specific way.
This interface inherits properties from MouseEvent and Event.
DragEvent.dataTransfer Read only
The data that is transferred during a drag and drop interaction.
Although this interface has a constructor, it is not possible to create a useful DataTransfer object from script, since DataTransfer objects have a processing and security model that is coordinated by the browser during drag-and-drops.
DragEvent()Creates a synthetic and untrusted DragEvent.
dragThis event is fired when an element or text selection is being dragged.
dragendThis event is fired when a drag operation is being ended (by releasing a mouse button or hitting the escape key).
dragenterThis event is fired when a dragged element or text selection enters a valid drop target.
dragleaveThis event is fired when a dragged element or text selection leaves a valid drop target.
dragoverThis event is fired continuously when an element or text selection is being dragged and the mouse pointer is over a valid drop target (every 50 ms WHEN mouse is not moving ELSE much faster between 5 ms (slow movement) and 1ms (fast movement) approximately. This firing pattern is different than mouseover ).
dragstartThis event is fired when the user starts dragging an element or text selection.
dropThis event is fired when an element or text selection is dropped on a valid drop target.
An Example of each property, constructor, event type and global event handlers is included in their respective reference page.
| Specification |
|---|
| HTML> # the-dragevent-interface> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
DragEvent |
46 | 12 | 3.5 | 12 | 14 | 46 | 4 | 33 | 14 | 5.0 | 46 | 14 |
DragEvent |
46 | 12 | 3.5 | 12 | 14 | 46 | 4 | 33 | 14 | 5.0 | 46 | 14 |
dataTransfer |
46 | 12 | 3.5 | 33 | 14 | 46 | 4 | 33 | 14 | 5.0 | 46 | 14 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/DragEvent