I\'m playing with the HTML5 drag and drop and tracking the mouse position while dragging.
OffsetX and OffsetY works awesome until you release the mouse, the offsets
You can add drag end event it should solve the problem. like this:
$('#dragger').bind('dragend', function (e) { $('#console').html(e.originalEvent.offsetX); })