Version 1.6
All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
-
.attr()
Get the value of an attribute for the first element in the set of matched elements.
-
.closest()
Get the first element that matches the selector, beginning at the current element and progressing up through the DOM tree.
-
deferred.always()
Add handlers to be called when the Deferred object is either resolved or rejected.
-
deferred.pipe()
Utility method to filter and/or chain Deferreds.
-
.find()
Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
-
:focus selector
Selects element if it is currently focused.
-
jQuery.holdReady()
Holds or releases the execution of jQuery's ready event.
-
.is()
Check the current matched set of elements against a selector, element, or jQuery object and return
true
if at least one of these elements matches the given arguments. -
jQuery.map()
Translate all items in an array or object to new array of items.
-
.nextUntil()
Get all following siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object passed.
-
.parentsUntil()
Get the ancestors of each element in the current set of matched elements, up to but not including the element matched by the selector, DOM node, or jQuery object.
-
.prevUntil()
Get all preceding siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object.
-
.promise()
Return a Promise object to observe when all actions of a certain type bound to the collection, queued or not, have finished.
-
.prop()
Get the value of a property for the first element in the set of matched elements.
-
.removeProp()
Remove a property for the set of matched elements.
-
.undelegate()
Remove a handler from the event for all elements which match the current selector, based upon a specific set of root elements.