Version 1.2
All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
jQuery 1.2 Release Notes
-
.andSelf()
Add the previous set of elements on the stack to the current set.
-
:animated Selector
Select all elements that are in the progress of an animation at the time the selector is run.
-
.contents()
Get the children of each element in the set of matched elements, including text and comment nodes.
-
.dequeue()
Execute the next function on the queue for the matched elements.
-
.hasClass()
Determine whether any of the matched elements are assigned the given class.
-
:header Selector
Selects all elements that are headers, like h1, h2, h3 and so on.
-
jQuery.inArray()
Search for a specified value within an array and return its index (or -1 if not found).
-
jQuery.isFunction()
Determine if the argument passed is a Javascript function object.
-
jQuery.makeArray()
Convert an array-like object into a true JavaScript array.
-
.map()
Pass each element in the current matched set through a function, producing a new jQuery object containing the return values.
-
.nextAll()
Get all following siblings of each element in the set of matched elements, optionally filtered by a selector.
-
.offset()
Get the current coordinates of the first element in the set of matched elements, relative to the document.
-
jQuery.param()
Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request.
-
.position()
Get the current coordinates of the first element in the set of matched elements, relative to the offset parent.
-
.prevAll()
Get all preceding siblings of each element in the set of matched elements, optionally filtered by a selector.
-
.queue()
Show the queue of functions to be executed on the matched elements.
-
.replaceAll()
Replace each target element with the set of matched elements.
-
.replaceWith()
Replace each element in the set of matched elements with the provided new content.
-
.serializeArray()
Encode a set of form elements as an array of names and values.
-
.stop()
Stop the currently-running animation on the matched elements.
-
.triggerHandler()
Execute all handlers attached to an element for an event.
-
.wrapAll()
Wrap an HTML structure around all elements in the set of matched elements.
-
.wrapInner()
Wrap an HTML structure around the content of each element in the set of matched elements.