How to catch dragend event in JavaScript?
Try using dragstop
instead of dragend
.bind('dragstop', function(){ $("#divId").text("drag ended");});
Try using dragstop
instead of dragend
.bind('dragstop', function(){ $("#divId").text("drag ended");});