I\'m trying to catch the dragend event in JavaScript for a draggable DIV. The dragend event is not fired at all, why ? and how to solve this ? PS, I\'m using .draggable() me
Try using dragstop instead of dragend
dragstop
dragend
.bind('dragstop', function(){ $("#divId").text("drag ended");});