Baseline Widely available
The DragEvent.dataTransfer
read-only property holds the drag operation's data (as a DataTransfer
object).
A DataTransfer
object which contains the drag event's data.
The property can be null
when the event is created using the constructor. It is never null
when dispatched by the browser.
This example illustrates accessing the drag and drop data within the dragend
event handler.
function processData(d) {
// Process the data â¦
}
dragTarget.addEventListener(
"dragend",
(ev) => {
// Call the drag and drop data processor
if (ev.dataTransfer !== null) processData(ev.dataTransfer);
},
false,
);
Specifications Browser compatibility
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4