Version 1.3
All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
Release Notes: 1.3, 1.3.1, 1.3.2
-
.closest()
Get the first element that matches the selector, beginning at the current element and progressing up through the DOM tree.
-
.context
The DOM node context originally passed to
jQuery()
; if none was passed then context will likely be the document. -
jQuery.dequeue()
Execute the next function on the queue for the matched element.
-
.die()
Remove all event handlers previously attached using
.live()
from the elements. -
event.currentTarget
The current DOM element within the event bubbling phase.
-
event.isDefaultPrevented()
Returns whether event.preventDefault() was ever called on this event object.
-
event.isImmediatePropagationStopped()
Returns whether event.stopImmediatePropagation() was ever called on this event object.
-
event.isPropagationStopped()
Returns whether event.stopPropagation() was ever called on this event object.
-
event.result
The last value returned by an event handler that was triggered by this event, unless the value was
undefined
. -
event.stopImmediatePropagation()
Prevents other event handlers from being called.
-
jQuery.fx.off
Globally disable all animations.
-
jQuery.isArray()
Determine whether the argument is an array.
-
.live()
Attach an event handler for all elements which match the current selector, now and in the future.
-
.pushStack()
Add a collection of DOM elements onto the jQuery stack.
-
jQuery.queue()
Show the queue of functions to be executed on the matched element.
-
jQuery.support
A collection of properties that represent the presence of different browser features or bugs.
-
.toggle()
Display or hide the matched elements.
-
.toggleClass()
Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the switch argument.