ajaxComplete event

Register a handler to be called when Ajax requests complete. This is an AjaxEvent.

ajaxError event

Register a handler to be called when Ajax requests complete with an error. This is an Ajax Event.

ajaxSend event

Attach a function to be executed before an Ajax request is sent. This is an Ajax Event.

ajaxStart event

Register a handler to be called when the first Ajax request begins. This is an Ajax Event.

ajaxStop event

Register a handler to be called when all Ajax requests have completed. This is an Ajax Event.

ajaxSuccess event

Attach a function to be executed whenever an Ajax request completes successfully. This is an Ajax Event.

blur event

Bind an event handler to the “blur” event, or trigger that event on an element.

callbacks.add()

Add a callback or a collection of callbacks to a callback list.

callbacks.disable()

Disable a callback list from doing anything more.

callbacks.disabled()

Determine if the callbacks list has been disabled.

callbacks.empty()

Remove all of the callbacks from a list.

callbacks.fire()

Call all of the callbacks with the given arguments.

callbacks.fired()

Determine if the callbacks have already been called at least once.

callbacks.fireWith()

Call all callbacks in a list with the given context and arguments.

callbacks.has()

Determine whether or not the list has any callbacks attached. If a callback is provided as an argument, determine whether it is in a list.

callbacks.lock()

Lock a callback list in its current state.

callbacks.locked()

Determine if the callbacks list has been locked.

callbacks.remove()

Remove a callback or a collection of callbacks from a callback list.

change event

Bind an event handler to the “change” event, or trigger that event on an element.

click event

Bind an event handler to the “click” event, or trigger that event on an element.

contextmenu event

Bind an event handler to the “contextmenu” event, or trigger that event on an element.

dblclick event

Bind an event handler to the “dblclick” event, or trigger that event on an element.

deferred.notify()

Call the progressCallbacks on a Deferred object with the given args.

deferred.notifyWith()

Call the progressCallbacks on a Deferred object with the given context and args.

deferred.pipe()

Utility method to filter and/or chain Deferreds.

deferred.progress()

Add handlers to be called when the Deferred object generates progress notifications.

deferred.state()

Determine the current state of a Deferred object.

deferred.then()

Add handlers to be called when the Deferred object is resolved, rejected, or still in progress.

error event

Bind an event handler to the “error” event, or trigger that event on an element.

event.delegateTarget

The element where the currently-called jQuery event handler was attached.

focus event

Bind an event handler to the “focus” event, or trigger that event on an element.

focusin event

Bind an event handler to the “focusin” event, or trigger that event on an element.

focusout event

Bind an event handler to the “focusout” event, or trigger that event on an element.

.is()

Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments.

jQuery.Callbacks()

A multi-purpose callbacks list object that provides a powerful way to manage callback lists.

jQuery.isNumeric()

Determines whether its argument represents a JavaScript number.

keydown event

Bind an event handler to the “keydown” event, or trigger that event on an element.

keypress event

Bind an event handler to the “keypress” event, or trigger that event on an element.

keyup event

Bind an event handler to the “keyup” event, or trigger that event on an element.

load event

Bind an event handler to the “load” event, or trigger that event on an element.

mousedown event

Bind an event handler to the “mousedown” event, or trigger that event on an element.

mouseenter event

Bind an event handler to be fired when the mouse enters an element, or trigger that handler on an element.

mouseleave event

Bind an event handler to be fired when the mouse leaves an element, or trigger that handler on an element.

mousemove event

Bind an event handler to the “mousemove” event, or trigger that event on an element.

mouseout event

Bind an event handler to the “mouseout” event, or trigger that event on an element.

mouseover event

Bind an event handler to the “mouseover” event, or trigger that event on an element.

mouseup event

Bind an event handler to the “mouseup” event, or trigger that event on an element.

.off()

Remove an event handler.

.on()

Attach an event handler function for one or more events to the selected elements.

.removeAttr()

Remove an attribute from each element in the set of matched elements.

.removeData()

Remove a previously-stored piece of data.

resize event

Bind an event handler to the “resize” event, or trigger that event on an element.

scroll event

Bind an event handler to the “scroll” event, or trigger that event on an element.

select event

Bind an event handler to the “select” event, or trigger that event on an element.

.stop()

Stop the currently-running animation on the matched elements.

submit event

Bind an event handler to the “submit” event, or trigger that event on an element.

unload event

Bind an event handler to the “unload” event, or trigger that event on an element.

@jQuery API