.add()
Create a new jQuery object with elements added to the set of matched elements.
Create a new jQuery object with elements added to the set of matched elements.
Get all preceding siblings of each element in the set of matched elements, optionally filtered by a selector, in the reverse document order.
Selects the combined results of all the specified selectors.
Attach an event handler function for one or more events to the selected elements.
Add handlers to be called when the Deferred object is rejected.
Add handlers to be called when the Deferred object is resolved.
Get the ancestors of each element in the current set of matched elements, optionally filtered by a selector.
Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.
Ajax requests produce a number of different events that you can subscribe to. Here's a full list of the events and in what order they are triggered. There are two types of events: Local Events These are callbacks that you can subscribe to within the Ajax request object, like so: 1 2 3 4 5 … Continue reading
Perform an asynchronous HTTP (Ajax) request.
For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree.
Bind an event handler to the “mousemove” event, or trigger that event on an element.
Select the element at index n within the matched set.
Remove event handlers previously attached using .live() from the elements.
Select all elements at an index less than index within the matched set.
Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.
Sorts an array of DOM elements, in place, with the duplicates removed. Note that this only works on arrays of DOM elements, not strings or numbers.
Provides a way to execute callback functions based on zero or more Thenable objects, usually Deferred objects that represent asynchronous events.
Resolve a Deferred object and call any doneCallbacks with the given args.
Resolve a Deferred object and call any doneCallbacks with the given context and args.