draggable
drag
Fires while dragging.
dragcancel
Fires when item drag is canceled by pressing the Escape key.
dragend
Fires when item drag ends.
dragstart
Fires when item drag starts.
droptarget
dragenter
Fires when draggable moves over the drop target.

Event data

draggable : jQuery
Reference to the draggable that enters the drop target.
dragleave
Fires when draggable moves out of the drop target.

Event data

draggable : jQuery
Reference to the draggable that leaves the drop target.
drop
Fires when draggable is dropped over the drop target.

Event data

draggable : jQuery
Reference to the draggable that is dropped over the drop target.
draggable.currentTarget : jQuery
The element that the drag and drop operation started from.
drag
cancel
Fires when the drag is canceled. This when the cancel method is called.

Event data

x : DragAxis
Reference to the horizontal drag axis instance.
y : DragAxis
Reference to the vertical drag axis instance.
event : jQueryEvent
Reference to the jQuery event object.
target : Element
Reference to the DOM element from which the Drag started. It is different from the element only if filter option is specified.
end
Fires when the drag ends.

Event data

x : DragAxis
Reference to the horizontal drag axis instance.
y : DragAxis
Reference to the vertical drag axis instance.
event : jQueryEvent
Reference to the jQuery event object.
target : Element
Reference to the DOM element from which the Drag started. It is different from the element only if filter option is specified.
move
Fires while dragging.

Event data

x : DragAxis
Reference to the horizontal drag axis instance.
y : DragAxis
Reference to the vertical drag axis instance.
event : jQueryEvent
Reference to the jQuery event object.
target : Element
Reference to the DOM element from which the Drag started. It is different from the element only if filter option is specified.
start
Fires when the user starts dragging the element.

Event data

x : DragAxis
Reference to the horizontal drag axis instance.
y : DragAxis
Reference to the vertical drag axis instance.
event : jQueryEvent
Reference to the jQuery event object.
target : Element
Reference to the DOM element from which the Drag started. It is different from the element only if filter option is specified.
tap
Fires when the user presses and releases the element without any movement or with a movement below the threshold specified.

Event data

x : DragAxis
Reference to the horizontal drag axis instance.
y : DragAxis
Reference to the vertical drag axis instance.
event : jQueryEvent
Reference to the jQuery event object.
target : Element
Reference to the DOM element from which the Drag started. It is different from the element only if filter option is specified.