CategoryObjectReturnsExampleDescription
jQuery function jQuery(selector[, context]) jQuery -
jQuery function jQuery(element) jQuery $('h1, h2, p, .class') DOM elements to be bound by a jQuery object
jQuery function jQuery(elementArray) jQuery -
jQuery function jQuery(jQueryObject) jQuery -
jQuery function jQuery() jQuery - New 1.4
jQuery function jQuery(html[, ownerDocument]) jQuery - Creates DOM elements on the fly from the provided string of raw HTML.
jQuery function jQuery(html,props) jQuery - New 1.4 Creates DOM elements on the fly from the provided string of raw HTML.
jQuery function jQuery(callback) jQuery - Binds a function to be executed when the DOM has finished loading. A shorthand for $(document).ready()
jQuery Object
Accessors
$.each( fn(index, element) ) jQuery - Iterate over a jQuery object, executing a function for each matched element.
jQuery Object
Accessors
.length Number - The number of elements in the jQuery object
jQuery Object
Accessors
.size() Number - The number of elements in the jQuery object
jQuery Object
Accessors
eq(position) jQuery - Reduce the set of matched elements to a single element
jQuery Object
Accessors
XXXX jQuery - DDDDDDD
jQuery Object
Accessors
XXXX jQuery - DDDDDDD
jQuery Object
Accessors
XXXX jQuery - DDDDDDD
jQuery Object
Accessors
XXXX jQuery - DDDDDDD
Plugins .context Element - The DOM node context originally passed to jQuery(); if none was passed then context will likely be the document.
Plugins jQuery.pushStack(elements) jQuery - Add a collection of DOM elements onto the jQuery stack.
Plugins jQuery.pushStack( elements, name, arguments ) jQuery - Add a collection of DOM elements onto the jQuery stack.
Plugins .selector String - A selector representing selector originally passed to jQuery().
Interoperability jQuery.noConflict([removeAll]) Object - Relinquish jQuery's control of the $ variable
Data .clearQueue( [ queueName ] ) jQuery - New 1.4 Remove from the queue all items that have not yet been run
Data jQuery.data( element, key, value ) jQuery - Store arbitrary data associated with the specified element.
Data jQuery.data( element, key ) Object - Returns value at named data store for the element, as set by jQuery.data(element, name, value), or the full data store for the element.
Data jQuery.data() Object - New 1.4 Returns value at named data store for the element, as set by jQuery.data(element, name, value), or the full data store for the element.
Data .dequeue( [ queueName ] ) jQuery - Execute the next function on the queue for the matched elements
Data jQuery.dequeue([ queueName ]) jQuery - Execute the next function on the queue for the matched elements
Data .queue( [ queueName ] ) Array - Show the queue of functions to be executed on the matched elements
Data .queue( [ queueName ], newQueue ) jQuery - Manipulate the queue of functions to be executed on the matched elements
Data jQuery.queue( [ queueName ] ) Array - Show the queue of functions to be executed on the matched elements
Data jQuery.queue( [ queueName ], newQueue ) jQuery - Manipulate the queue of functions to be executed on the matched elements.
Data jQuery.queue( [ queueName ], callback() ) jQuery - Manipulate the queue of functions to be executed on the matched elements.
Data jQuery.removeData( [ name ] ) jQuery - Remove a previously-stored piece of data.