.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.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 a supplied callback 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()
Bind an event handler to the "change" JavaScript event, or trigger that event on an element.
.checkbox()
Selects all elements of type checkbox.
.checked()
Matches all elements that are checked.
.child()
Selects all direct child elements specified by "child" of elements specified by "parent".
.children()
Get the children of each element in the set of matched elements, optionally filtered by a selector.
.class()
Selects all elements with the given class.
.clearQueue()
Remove from the queue all items that have not yet been run.
.click()
Bind an event handler to the "click" JavaScript event, or trigger that event on an element.
.clone()
Create a deep copy of the set of matched elements.
.closest()
Get the first element that matches the selector, beginning at the current element and progressing up through the DOM tree.
.closest()
Gets an array of all the elements and selectors matched against the current element up through the DOM tree.
.contains()
Select all elements that contain the specified text.
.contents()
Get the children of each element in the set of matched elements, including text and comment nodes.
.context()
The DOM node context originally passed to jQuery(); if none was passed then context will likely be the document.
.css()
Get the value of a style property for the first element in the set of matched elements.
.css()
Set one or more CSS properties for the set of matched elements.