HTML ondrop Attribute

❮ HTML Attributes

Example

<div ondrop="myFunction(event)"></div>

Meaning

The ondrop attribute specifies the script to be run when dragged element is being dropped.

Note: To make an element draggable, use the global HTML5 draggable attribute.

Tip: A links and images are draggable by default there is no need of draggable attribute.




Standard Syntax

<element ondrop="script">



Browser Support




Status




Applies to:

The ondrop attribute can be used on the following element:

Element Attribute
All HTML elements ondrop






Attribute Values

Value Description
script Specifies the script to be run on ondrop
❮ HTML Attributes