0% found this document useful (0 votes)
26 views3 pages

Jquery 1 Doc

This document describes several jQuery callback methods: - callbacks.fired() determines if callbacks have been called at least once - callbacks.fireWith() calls all callbacks in a list with given context and arguments - callbacks.has() determines if a callback list has any attached callbacks

Uploaded by

anand
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views3 pages

Jquery 1 Doc

This document describes several jQuery callback methods: - callbacks.fired() determines if callbacks have been called at least once - callbacks.fireWith() calls all callbacks in a list with given context and arguments - callbacks.has() determines if a callback list has any attached callbacks

Uploaded by

anand
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

callbacks.

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

Child Selector (parent > child)


Selects all direct child elements specified by child of elements specified by parent.
Traversing > Tree Traversal

.children()
Get the children of each element in the set of matched elements, optionally filtered by a selector.
Selectors > Basic

Class Selector (.class)


Selects all elements with the given class.
Effects > Custom | Data | Utilities

.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.

You might also like