Reputation: 18669
I have set up some jqueryUI dragging, but when I use the stop
event, just like the example, it won't let me move it again
$( ".selector" ).draggable({
stop: function(event, ui) { ... }
});
http://jqueryui.com/demos/draggable/#event-stop
Upvotes: 0
Views: 1210
Reputation: 15121
It seems to be working fine after the stop function executes.
Check this fiddle
Upvotes: 1