Jquery 1 Doc
Jquery 1 Doc
fired()
Determine if the callbacks have already been called at least once.
Callbacks Object
callbacks.fireWith()
Call all callbacks in a list with the given context and arguments.
Callbacks Object
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 Object
callbacks.lock()
Lock a callback list in its current state.
Callbacks Object
callbacks.locked()
Determine if the callbacks list has been locked.
Callbacks Object
callbacks.remove()
Remove a callback or a collection of callbacks from a callback list.
Events > Form Events | Forms
.change()
Bind an event handler to the change JavaScript event, or trigger that event on an element.
Selectors > Form | Selectors > jQuery Extensions
:checkbox Selector
Selects all elements of type checkbox.
Selectors > Form
:checked Selector
Matches all elements that are checked or selected.
Selectors > Hierarchy
.children()
Get the children of each element in the set of matched elements, optionally filtered by a selector.
Selectors > Basic
.clearQueue()
Remove from the queue all items that have not yet been run.
Events > Mouse Events
.click()
Bind an event handler to the click JavaScript event, or trigger that event on an element.
Manipulation > Copying
.clone()
Create a deep copy of the set of matched elements.
Traversing > Tree Traversal
.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.
Selectors > Content Filter
:contains() Selector
Select all elements that contain the specified text.
Traversing > Miscellaneous Traversing
.contents()
Get the children of each element in the set of matched elements, including text and comment
nodes.
Deprecated > Deprecated 1.10 | Internals | Properties > Properties of jQuery Object Instances
.context
The DOM node context originally passed to jQuery(); if none was passed then context will likely
be the document.