Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Revision 1000373 of DataTransfer

  • Revision slug: Web/API/DataTransfer
  • Revision title: DataTransfer
  • Revision id: 1000373
  • Created:
  • Creator: gthomas3
  • Is current revision? No
  • Comment

Revision Content

{{APIRef("HTML Drag and Drop API")}}

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.

This object is available from the {{domxref("DragEvent.dataTransfer","dataTransfer")}} property of all {{domxref("DragEvent","drag events")}}. It cannot be created separately (i.e. there is no constructor for this object).

Properties

Standard properties

{{domxref("DataTransfer.dropEffect")}}
Gets the type of drag-and-drop operation currently selected or sets the operation to a new type. The value must be none copy link or move.
{{domxref("DataTransfer.effectAllowed")}}
Provides all of the types of operations that are possible. Must be one of none, copy, copyLink, copyMove, link, linkMove, move, all or uninitialized.
{{domxref("DataTransfer.files")}}
Contains a list of all the local files available on the data transfer. If the drag operation doesn't involve dragging files, this property is an empty list.
{{domxref("DataTransfer.items")}} {{readonlyInline}}
Gives a {{domxref("DataTransferItemList")}} object which is a list of all of the drag data.
{{domxref("DataTransfer.types")}} {{readonlyInline}}
An array of {{domxref("DOMString","string")}} giving the formats that were set in the {{event("dragstart")}} event.

Gecko properties

{{SeeCompatTable}}

Note: All of the properties in this section are Gecko-specific.
{{domxref("DataTransfer.mozCursor")}}
Gives the drag cursor's state. This is primarily used to control the cursor during tab drags.
{{domxref("DataTransfer.mozItemCount")}} {{readonlyInline}}
Gives the number of items in the drag operation.
{{domxref("DataTransfer.mozSourceNode")}} {{readonlyInline}}
The {{ domxref("Node") }} over which the mouse cursor was located when the button was pressed to initiate the drag operation. This value is null for external drags or if the caller can't access the node.
{{domxref("DataTransfer.mozUserCancelled")}} {{readonlyInline}}
This property applies only to the dragend event, and is true if the user canceled the drag operation by pressing escape. It will be false in all other cases, including if the drag failed for any other reason, for instance due to a drop over an invalid location.

Methods

Standard methods

{{domxref("DataTransfer.clearData()")}}
Remove the data associated with a given type. The type argument is optional. If the type is empty or not specified, the data associated with all types is removed. If data for the specified type does not exist, or the data transfer contains no data, this method will have no effect.
{{domxref("DataTransfer.getData()")}}
Retrieves the data for a given type, or an empty string if data for that type does not exist or the data transfer contains no data.
{{domxref("DataTransfer.setData()")}}
Set the data for a given type. If data for the type does not exist, it is added at the end, such that the last item in the types list will be the new format. If data for the type already exists, the existing data is replaced in the same position.
{{domxref("DataTransfer.setDragImage()")}}
Set the image to be used for dragging if a custom one is desired.

Gecko methods

{{SeeCompatTable}}

Note: All of the methods in this section are Gecko-specific.
{{domxref("DataTransfer.addElement()")}}
Sets the drag source to the given element.
{{domxref("DataTransfer.mozClearDataAt()")}}
Removes the data associated with the given format for an item at the specified index. The index is in the range from zero to the number of items minus one.
{{domxref("DataTransfer.mozGetDataAt()")}}
Retrieves the data associated with the given format for an item at the specified index, or null if it does not exist. The index should be in the range from zero to the number of items minus one.
{{domxref("DataTransfer.mozSetDataAt()")}}
A data transfer may store multiple items, each at a given zero-based index. mozSetDataAt() may only be called with an index argument less than mozItemCount in which case an existing item is modified, or equal to mozItemCount in which case a new item is added, and the mozItemCount is incremented by one.
{{domxref("DataTransfer.mozTypesAt()")}}
Holds a list of the format types of the data that is stored for an item at the specified index. If the index is not in the range from 0 to the number of items minus one, an empty string list is returned.

Example

Every method and property listed in this document has its own reference page and each reference page either directly includes an example of the interface or has a link to an example.

Specifications

Specification Status Comment
{{SpecName('HTML WHATWG', 'interaction.html#datatransfer','DataTransfer')}} {{Spec2('HTML WHATWG')}} mozCursor, mozItemCount, mozSourceNode, mozUserCancelled, addElement(), mozClearDataAt(), mozGetDataAt(), mozSetDataAt() and mozTypesAt are Gecko specific.
{{SpecName('HTML5.1', 'editing.html#the-datatransfer-interface','DataTransfer')}} {{Spec2('HTML5.1')}} Not included in W3C HTML5 {{Spec2('HTML5 W3C')}}

Browser compatibility

{{CompatibilityTable}}

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 4 3.5 [2] 10 [1] [2] 12 3.1 [2]
Feature Android Android Webview Chrome for Android Firefox Mobile (Gecko) Firefox OS IE Mobile Opera Mobile Safari Mobile
Basic support {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatNo}} {{CompatIE("10")}} {{CompatNo}} {{CompatNo}}

[1]Partial support refers to not supporting {{domxref("DataTransfer.setDragImage()")}} [CanIUse.com]

[2]Does not support {{domxref("DataTransfer.items")}} property

See also

{{DataTransferSeeAlso}}

Revision Source

<div>{{APIRef("HTML Drag and Drop API")}}</div>

<p>The <code><strong>DataTransfer</strong></code> 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 <a href="/en-US/docs/Web/API/HTML_Drag_and_Drop_API">HTML Drag and Drop API</a>.</p>

<p>This object is available from the {{domxref("DragEvent.dataTransfer","dataTransfer")}} property of all {{domxref("DragEvent","drag events")}}. It cannot be created separately (i.e. there is no constructor for this object).</p>

<h2 id="Properties">Properties</h2>

<h3 id="Standard_properties">Standard properties</h3>

<dl>
 <dt>{{domxref("DataTransfer.dropEffect")}}</dt>
 <dd>Gets the type of drag-and-drop operation currently selected or sets the operation to a new type. The value must be <code>none</code> <code>copy</code> <code>link</code> or <code>move</code>.</dd>
 <dt>{{domxref("DataTransfer.effectAllowed")}}</dt>
 <dd>Provides all of the types of operations that are possible. Must be one of <code>none</code>, <code>copy</code>, <code>copyLink</code>, <code>copyMove</code>, <code>link</code>, <code>linkMove</code>, <code>move</code>, <code>all</code> or <code>uninitialized</code>.</dd>
 <dt>{{domxref("DataTransfer.files")}}</dt>
 <dd>Contains a list of all the local files available on the data transfer. If the drag operation doesn't involve dragging files, this property is an empty list.</dd>
 <dt>{{domxref("DataTransfer.items")}} {{readonlyInline}}</dt>
 <dd>Gives a {{domxref("DataTransferItemList")}} object which is a list of all of the drag data.</dd>
 <dt>{{domxref("DataTransfer.types")}} {{readonlyInline}}</dt>
 <dd>An array of {{domxref("DOMString","string")}} giving the formats that were set in the {{event("dragstart")}} event.</dd>
</dl>

<h3 id="Gecko_properties">Gecko properties</h3>

<p>{{SeeCompatTable}}</p>

<div class="note"><strong>Note:</strong> All of the properties in this section are Gecko-specific.</div>

<dl>
 <dt>{{domxref("DataTransfer.mozCursor")}}</dt>
 <dd>Gives the drag cursor's state. This is primarily used to control the cursor during tab drags.</dd>
 <dt>{{domxref("DataTransfer.mozItemCount")}} {{readonlyInline}}</dt>
 <dd>Gives the number of items in the drag operation.</dd>
 <dt>{{domxref("DataTransfer.mozSourceNode")}} {{readonlyInline}}</dt>
 <dd>The {{ domxref("Node") }} over which the mouse cursor was located when the button was pressed to initiate the drag operation. This value is <code>null</code> for external drags or if the caller can't access the node.</dd>
 <dt>{{domxref("DataTransfer.mozUserCancelled")}} {{readonlyInline}}</dt>
 <dd>This property applies only to the <code>dragend</code> event, and is <code>true</code> if the user canceled the drag operation by pressing escape. It will be <code>false</code> in all other cases, including if the drag failed for any other reason, for instance due to a drop over an invalid location.</dd>
</dl>

<h2 id="Methods">Methods</h2>

<h3 id="Standard_methods">Standard methods</h3>

<dl>
 <dt>{{domxref("DataTransfer.clearData()")}}</dt>
 <dd>Remove the data associated with a given type. The type argument is optional. If the type is empty or not specified, the data associated with all types is removed. If data for the specified type does not exist, or the data transfer contains no data, this method will have no effect.</dd>
 <dt>{{domxref("DataTransfer.getData()")}}</dt>
 <dd>Retrieves the data for a given type, or an empty string if data for that type does not exist or the data transfer contains no data.</dd>
 <dt>{{domxref("DataTransfer.setData()")}}</dt>
 <dd>Set the data for a given type. If data for the type does not exist, it is added at the end, such that the last item in the types list will be the new format. If data for the type already exists, the existing data is replaced in the same position.</dd>
 <dt>{{domxref("DataTransfer.setDragImage()")}}</dt>
 <dd>Set the image to be used for dragging if a custom one is desired.</dd>
</dl>

<h3 id="Gecko_methods">Gecko methods</h3>

<p>{{SeeCompatTable}}</p>

<div class="note"><strong>Note:</strong> All of the methods in this section are Gecko-specific.</div>

<dl>
 <dt>{{domxref("DataTransfer.addElement()")}}</dt>
 <dd>Sets the drag source to the given element.</dd>
 <dt>{{domxref("DataTransfer.mozClearDataAt()")}}</dt>
 <dd>Removes the data associated with the given format for an item at the specified index. The index is in the range from zero to the number of items minus one.</dd>
 <dt>{{domxref("DataTransfer.mozGetDataAt()")}}</dt>
 <dd>Retrieves the data associated with the given format for an item at the specified index, or null if it does not exist. The index should be in the range from zero to the number of items minus one.</dd>
 <dt>{{domxref("DataTransfer.mozSetDataAt()")}}</dt>
 <dd>A data transfer may store multiple items, each at a given zero-based index. <code>mozSetDataAt()</code> may only be called with an index argument less than <code>mozItemCount</code> in which case an existing item is modified, or equal to <code>mozItemCount</code> in which case a new item is added, and the <code>mozItemCount</code> is incremented by one.</dd>
 <dt>{{domxref("DataTransfer.mozTypesAt()")}}</dt>
 <dd>Holds a list of the format types of the data that is stored for an item at the specified index. If the index is not in the range from 0 to the number of items minus one, an empty string list is returned.</dd>
</dl>

<h2 id="Example">Example</h2>

<p>Every method and property listed in this document has its own reference page and each reference page either directly includes an example of the interface or has a link to an example.</p>

<h2 id="Specifications">Specifications</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
  <tr>
   <td>{{SpecName('HTML WHATWG', 'interaction.html#datatransfer','DataTransfer')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td><code>mozCursor</code>, <code>mozItemCount</code>, <code>mozSourceNode</code>, <code>mozUserCancelled</code>, <code>addElement()</code>, <code>mozClearDataAt()</code>, <code>mozGetDataAt()</code>, <code>mozSetDataAt()</code> and <code>mozTypesAt</code> are Gecko specific.</td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5.1', 'editing.html#the-datatransfer-interface','DataTransfer')}}</td>
   <td>{{Spec2('HTML5.1')}}</td>
   <td>Not included in W3C HTML5 {{Spec2('HTML5 W3C')}}</td>
  </tr>
  <tr>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility">Browser compatibility</h2>

<p>{{CompatibilityTable}}</p>

<div id="compat-desktop">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Feature</th>
   <th>Chrome</th>
   <th>Firefox (Gecko)</th>
   <th>Internet Explorer</th>
   <th>Opera</th>
   <th>Safari (WebKit)</th>
  </tr>
  <tr>
   <td>Basic support</td>
   <td>4</td>
   <td>3.5 <sup>[2]</sup></td>
   <td>10 <sup>[1]</sup> <sup>[2]</sup></td>
   <td>12</td>
   <td>3.1 <sup>[2]</sup></td>
  </tr>
 </tbody>
</table>
</div>

<div id="compat-mobile">
<table class="compat-table">
 <tbody>
  <tr>
   <th>Feature</th>
   <th>Android</th>
   <th>Android Webview</th>
   <th>Chrome for Android</th>
   <th>Firefox Mobile (Gecko)</th>
   <th>Firefox OS</th>
   <th>IE Mobile</th>
   <th>Opera Mobile</th>
   <th>Safari Mobile</th>
  </tr>
  <tr>
   <td>Basic support</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatIE("10")}}</td>
   <td>{{CompatNo}}</td>
   <td>{{CompatNo}}</td>
  </tr>
 </tbody>
</table>
</div>

<p><code>[1]</code><a href="https://caniuse.com/#search=drag">Partial support refers to not supporting {{domxref("DataTransfer.setDragImage()")}} [CanIUse.com]</a></p>

<p><code>[2]</code>Does not support {{domxref("DataTransfer.items")}} property</p>

<h2 id="See_also">See also</h2>

<p>{{DataTransferSeeAlso}}</p>
Revert to this revision