Browser and Feature Detection:
Returns: Object
A collection of properties that represent the presence of different browser features or bugs.
Returns: Map
We recommend against using this property, please try to use feature detection instead (see jQuery.support). Contains flags for the useragent, read from navigator.userAgent. While jQuery.browser will not be removed from future versions of jQuery, every effort to use jQuery.support and proper feature detection should be made.
Returns: Boolean
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.
Array and Object operations:
Returns: Boolean
Check to see if a DOM node is within another DOM node.
Returns: jQuery
Store arbitrary data associated with the specified element.
Returns: Object
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.
Returns: jQuery
Execute the next function on the queue for the matched element.
Execute some JavaScript code globally.
Returns: Object
Merge the contents of two or more objects together into the first object.
Returns: Array
Finds the elements of an array which satisfy a filter function. The original array is not affected.
Returns: Array
Convert an array-like object into a true JavaScript array.
Returns: Array
Translate all items in an array or array-like object to another array of items.
Returns: Number
Search for a specified value within an array and return its index (or -1 if not found).
Returns: Array
Merge the contents of two arrays together into the first array.
Returns: Function
Takes a function and returns a new one that will always have a particular context.
Returns: Array
Show the queue of functions to be executed on the matched element.
Returns: jQuery
Remove a previously-stored piece of data.
Returns: Array
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.
Returns: String
Determine the internal JavaScript [[Class]] of an object.
Test operations:
Returns: Boolean
Determine whether the argument is an array.
Returns: Boolean
Determine if the argument passed is a Javascript function object.
Returns: Boolean
Check to see if an object is empty (contains no properties).
Returns: Boolean
Check to see if an object is a plain object (created using "{}" or "new Object").
Returns: Boolean
Check to see if a DOM node is within an XML document (or is an XML document).
Returns: Boolean
Determine whether the argument is a window.
String operations:
Returns: String
Remove the whitespace from the beginning and end of a string.
Returns: Object
Takes a well-formed JSON string and returns the resulting JavaScript object.
Returns: XMLDocument
Parses a string into an XML document.
Was this information helpful?

