$(…) jQuery Function:
Accepts a string containing a CSS selector which is then used to match a set of elements.
Returns:Boolean
Holds or releases the execution of jQuery's ready event.
Access to jQuery object:
Iterate over a jQuery object, executing a function for each matched element.
Return the number of DOM elements matched by the jQuery object.
The number of elements in the jQuery object.
A selector representing selector originally passed to jQuery().
The DOM node context originally passed to jQuery(); if none was passed then context will likely be the document.
Retrieve the DOM elements matched by the jQuery object.
Search for a given element from among the matched elements.
Store arbitrary data associated with the matched elements.
Returns:jQuery
Remove a previously-stored piece of data.
Returns:jQuery
Remove from the queue all items that have not yet been run.
Show the queue of functions to be executed on the matched elements.
Execute the next function on the queue for the matched elements.
Retrieve all the DOM elements contained in the jQuery set, as an array.
Returns:jQuery
Creates a new copy of jQuery whose properties and methods can be modified without affecting the original jQuery object.
Returns:Deferred
Provides a way to execute callback functions based on one or more objects, usually Deferred objects that represent asynchronous events.
Returns:Boolean
Determine whether an element has any jQuery data associated with it.
Returns:
Object
Relinquish jQuery's control of the $ variable.
Was this information helpful?

