jQuery drag and drop simulation does not work for the last draggable

it is because it simulating drag event only without drop, use drag-n-drop instead.

draggable.simulate("drag-n-drop", {dx: dx,  dy: dy});

Leave a Comment