Firefox Tomorrow

web api instance property

DragEvent: dataTransfer property

View on MDN ↗

The DragEvent.dataTransfer read-only property holds the drag operation’s data (as a DataTransfer object).

Value

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.

Examples

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);
});

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.