jquery ui drag element without keeping mouse button down (follow the cursor)
问题 I am trying to drag an element without keeping the mouse button down. The behavior I would like is : I click on a draggable item Drag my item without keeping mouse left click down : just follow the mouse as a cursor I click on a droppable container to confirm and append my item I am able to simulate this behavior if I add an alert box durring the start event. start : function(){ alert('test') }, Here is the fiddle : http://jsfiddle.net/QvRjL/103/ How is it possible to code this behavior