.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.
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” JavaScript event, or trigger that event on an element.
Select all elements at an index less than index within the matched set.
Selects even elements, zero-indexed. See also :odd.
Select the element at index n within the matched set.
Remove event handlers previously attached using .live() from the elements.
Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.
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.
Reject a Deferred object and call any failCallbacks with the given context and args.
Provides a way to execute callback functions based on zero or more Thenable objects, usually Deferred objects that represent asynchronous events.