Fires when item drag is canceled by pressing the Escape key.
Fires when item drag ends.
Fires when item drag starts.
Fires when draggable moves over the drop target.
Event data
-
draggable
: jQuery
- Reference to the draggable that enters the drop target.
Fires when draggable moves out of the drop target.
Event data
-
draggable
: jQuery
- Reference to the draggable that leaves the drop target.
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.
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.
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.
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.
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.
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.