onBeforeDrop

fires before a dragged element is released over the droppable area

boolean onBeforeDrop(object context,Event native_event);
context
objectthe drag-n-drop context native_event
Eventan HTML event object
booleanreturning false will prevent further drag-and-drop processing

Example

some.attachEvent("onBeforeDrop", function(context, native_event){
    //... some code here ... 
    // return false to block operation
    return true;
});

Related samples

Details

If you drag multiple items, the event will be called once for the entire batch of items.

The drag-and-drop context can have the following properties:

See also
  • API
  • Articles
  • Back to top
    Join Our Forum
    We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.