Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 581 Bytes

readme.md

File metadata and controls

19 lines (11 loc) · 581 Bytes

This plugin is no longer maintained as was built to fix an issue in a web app I built for my old company. For a better solution look at lolmaus's plugin...

https://github.com/lolmaus/jquery.dragbetter/

jQuery Special Event - jquery.event.dragout

Special event created to handle true dragleave functionality.

HTML5 dragleave event works more like mouseout. This plugin was created to replicate the mouseleave style functionality whilst dragging.

Usage Example

$('#myelement').on('dragout',function(event){ 

	// YOUR CODE

});