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 →
Insert every element in the set of matched elements to the end of the target.
Create a new jQuery object with elements added to the set of matched elements.
Get the value of an attribute for the first element in the set of matched elements or set one or more attributes for every matched element.
Relinquish jQuery’s control of the $ variable.
Add handlers to be called when the Deferred object is resolved.
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 be fired when the mouse leaves an element, or trigger that handler on an element.
End the most recent filtering operation in the current chain and return the set of matched elements to its previous state.
Bind an event handler to be fired when the mouse enters an element, or trigger that handler on an element.
Bind an event handler to the “mouseout” JavaScript event, or trigger that event on an element.
Bind an event handler to the “load” JavaScript event.
Bind an event handler to the “focus” JavaScript event, or trigger that event on an element.
Return a Deferred’s Promise object.
Specify a function to execute when the DOM is fully loaded.
Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
Remove elements from the set of matched elements.
Load a JavaScript file from the server using a GET HTTP request, then execute it.
Send data to the server using a HTTP POST request.
A factory function that returns a chainable utility object with methods to register multiple callbacks into callback queues, invoke callback queues, and relay the success or failure state of any synchronous or asynchronous function.