fires before a dragged element is released over the droppable area
context | object | the drag-n-drop context |
native_event | Event | an HTML event object |
some.attachEvent("onBeforeDropOut", function(context, native_event){
//... some code here ...
//return false to block operation
return true;
});
Event is similar to onBeforeDrop, but occurs in a drag SOURCE component, not in a drag target one