Results 1 - 20 of 43

DragEvent

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.
API drag and drop DragEvent Reference

DragEvent.dataTransfer

The DataEvent.dataTransfer property holds the drag operation's data (as a DataTransfer object).
API DOM drag and drop Property Reference

DragEvent()

This constructor is used to create a synthetic DragEvent object.
API Constructor DOM drag and drop Reference

GlobalEventHandlers.ondragexit

The GlobalEventHandler.ondragexit property is an event handler for the dragexit event.
API DOM HTML drag and drop Reference

File drag and drop

HTML Drag and Drop interfaces enable web applications to  drag and drop files on a web page. This document describes how an application can accept one or more files that are dragged from the underlying platform's file manager and dropped on a web page.
drag and drop drop zone Guide

DataTransfer

The DataTransfer object is used to hold the data that is being dragged during a drag and drop operation. It may hold one or more data items, each of one or more data types. For more information about drag and drop, see HTML Drag and Drop API.
API DataTransfer drag and drop HTML Drag and Drop API Interface NeedsMarkupWork Reference Web Development

DataTransferItem

The DataTransferItem object represents one drag data item. During a drag operation, each drag event has a dataTransfer property which contains a list of drag data items. Each item in the list is a DataTransferItem object.
API DataTransferItem drag and drop HTML DOM HTML Drag and Drop API Interface Reference

DataTransferItem.getAsFile()

If the item is a file, the DataTransferItem.getAsFile() method returns the drag data item's File object. If the item is not a file, this method returns null.
API DataTransferItem drag and drop HTML DOM HTML Drag and Drop API Method Reference

DataTransferItem.getAsString()

The DataTransferItem.getAsString() method invokes the given callback with the drag data item's string data as the argument if the item's kind is a Plain unicode string (i.e. kind is string).
API DataTransferItem drag and drop getAsString HTML DOM HTML Drag and Drop API Method Reference

DataTransferItem.kind

The read-only DataTransferItem.kind property returns a DataTransferItem representing the drag data item kind: some text or some file.
API DataTransferItem drag and drop HTML DOM HTML Drag and Drop API kind Property Reference

DataTransferItem.type

The read-only DataTransferItem.type property returns the type (format) of the DataTransferItem object representing the drag data item. The type is a Unicode string generally given by a MIME type, although a MIME type is not required.
API DataTransferItem drag and drop HTML DOM HTML Drag and Drop API Property Reference Type

DataTransferItemList

The DataTransferItemList object is a list of DataTransferItem objects representing items being dragged. During a drag operation, each DragEvent has a dataTransfer property and that property is a DataTransferItemList.
API DataTransferItemList drag and drop HTML DOM HTML Drag and Drop API Interface Reference

DataTransferItemList.add()

The DataTransferItemList.add() method creates a new DataTransferItem using the specified data and adds it to the drag data list. The item may be a File or a string of a given type. If the item is successfully added to the list, the newly-created DataTransferItem object is returned.
Add API DataTransferItemList drag and drop HTML DOM HTML Drag and Drop API Method NeedsLiveSample Reference