.jquery()

A string containing the jQuery version number.

.jQuery()

Accepts a string containing a CSS selector which is then used to match a set of elements.

.jQuery()

Creates DOM elements on the fly from the provided string of raw HTML.

.jQuery()

Binds a function to be executed when the DOM has finished loading.

.jQuery.ajax()

Perform an asynchronous HTTP (Ajax) request.

.jQuery.ajaxPrefilter()

Handle custom Ajax options or modify existing options before each request is sent and before they are processed by $.ajax().

.jQuery.ajaxSetup()

Set default values for future Ajax requests.

.jQuery.boxModel()

Deprecated in jQuery 1.3 (see jQuery.support). States if the current page, in the user's browser, is being rendered using the W3C CSS Box Model.

.jQuery.browser()

Contains flags for the useragent, read from navigator.userAgent. We recommend against using this property; please try to use feature detection instead (see jQuery.support). jQuery.browser may be moved to a plugin in a future release of jQuery.

.jQuery.browser.version()

The version number of the rendering engine for the user's browser.

.jQuery.Callbacks()

A multi-purpose callbacks list object that provides a powerful way to manage callback lists.

.jQuery.contains()

Check to see if a DOM element is within another DOM element.

.jQuery.cssHooks()

Hook directly into jQuery to override how particular CSS properties are retrieved or set, normalize CSS property naming, or create custom properties.

.jQuery.data()

Store arbitrary data associated with the specified element. Returns the value that was set.

.jQuery.data()

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.

.jQuery.dequeue()

Execute the next function on the queue for the matched element.

.jQuery.each()

A generic iterator function, which can be used to seamlessly iterate over both objects and arrays. Arrays and array-like objects with a length property (such as a function's arguments object) are iterated by numeric index, from 0 to length-1. Other objects are iterated via their named properties.

.jQuery.error()

Takes a string and throws an exception containing it.

.jQuery.extend()

Merge the contents of two or more objects together into the first object.

.jQuery.fx.interval()

The rate (in milliseconds) at which animations fire.

.jQuery.fx.off()

Globally disable all animations.

.jQuery.get()

Load data from the server using a HTTP GET request.

.jQuery.getJSON()

Load JSON-encoded data from the server using a GET HTTP request.

.jQuery.getScript()

Load a JavaScript file from the server using a GET HTTP request, then execute it.

.jQuery.globalEval()

Execute some JavaScript code globally.

.jQuery.grep()

Finds the elements of an array which satisfy a filter function. The original array is not affected.

.jQuery.hasData()

Determine whether an element has any jQuery data associated with it.

.jQuery.holdReady()

Holds or releases the execution of jQuery's ready event.

.jQuery.inArray()

Search for a specified value within an array and return its index (or -1 if not found).

.jQuery.isArray()

Determine whether the argument is an array.

.jQuery.isEmptyObject()

Check to see if an object is empty (contains no properties).

.jQuery.isFunction()

Determine if the argument passed is a Javascript function object.

.jQuery.isNumeric()

Determines whether its argument is a number.

.jQuery.isPlainObject()

Check to see if an object is a plain object (created using "{}" or "new Object").

.jQuery.isWindow()

Determine whether the argument is a window.

.jQuery.isXMLDoc()

Check to see if a DOM node is within an XML document (or is an XML document).

.jQuery.makeArray()

Convert an array-like object into a true JavaScript array.

.jQuery.map()

Translate all items in an array or object to new array of items.

.jQuery.merge()

Merge the contents of two arrays together into the first array.

.jQuery.noConflict()

Relinquish jQuery's control of the $ variable.

.jQuery.noop()

An empty function.

.jQuery.now()

Return a number representing the current time.

.jQuery.param()

Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request.

.jQuery.parseJSON()

Takes a well-formed JSON string and returns the resulting JavaScript object.

.jQuery.parseXML()

Parses a string into an XML document.

.jQuery.post()

Load data from the server using a HTTP POST request.

.jQuery.proxy()

Takes a function and returns a new one that will always have a particular context.

.jQuery.queue()

Show the queue of functions to be executed on the matched element.

.jQuery.queue()

Manipulate the queue of functions to be executed on the matched element.

.jQuery.removeData()

Remove a previously-stored piece of data.

.jQuery.sub()

Creates a new copy of jQuery whose properties and methods can be modified without affecting the original jQuery object.

.jQuery.support()

A collection of properties that represent the presence of different browser features or bugs. Primarily intended for jQuery's internal use; specific properties may be removed when they are no longer needed internally to improve page startup performance.

.jQuery.trim()

Remove the whitespace from the beginning and end of a string.

.jQuery.type()

Determine the internal JavaScript [[Class]] of an object.

.jQuery.unique()

Sorts an array of DOM elements, in place, with the duplicates removed. Note that this only works on arrays of DOM elements, not strings or numbers.

.jQuery.when()

Provides a way to execute callback functions based on one or more objects, usually Deferred objects that represent asynchronous events.