.closest()
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.
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.
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.
Bind an event handler to the “keydown” JavaScript event, or trigger that event on an element.
Bind an event handler to the “keypress” JavaScript event, or trigger that event on an element.
Insert every element in the set of matched elements after the target.
Attach an event handler for all elements which match the current selector, now and in the future.
Bind an event handler to the “keyup” JavaScript event, or trigger that event on an element.
Adjust the opacity of the matched elements.
Bind an event handler to the “mousemove” JavaScript event, or trigger that event on an element.
Get the HTML contents of the first element in the set of matched elements or set the HTML contents of every matched element.
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
Create a new jQuery object with elements added to the set of matched elements.
Return a Deferred’s Promise object.
Bind an event handler to the “load” JavaScript event.
Send data to the server using a HTTP POST request.
Load a JavaScript file from the server using a GET HTTP request, then execute it.
Bind an event handler to be fired when the mouse enters an element, or trigger that handler on an element.
Translate all items in an array or object to new array of items.
Store arbitrary data associated with the matched elements or return the value at the named data store for the first element in the set of matched elements.
End the most recent filtering operation in the current chain and return the set of matched elements to its previous state.