API/1.3/Utilities
From jQuery JavaScript Library
Jump to: navigation, search
Browser and Feature Detection:
Name | Type |
Returns: Object | |
Added in jQuery 1.3 A collection of properties that represent the presence of different browser features or bugs. | |
Returns: Map | |
Deprecated in jQuery 1.3 (see jQuery.support) Contains flags for the useragent, read from navigator.userAgent. | |
Returns: String | |
Deprecated in jQuery 1.3 (see jQuery.support) The version number of the rendering engine for the user's browser. | |
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:
Name | Type |
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: Object | |
Extend one object with one or more others, returning the modified object. | |
Returns: Array | |
Finds the elements of an array which satisfy a filter function. The original array is not affected. | |
Returns: Array | |
Turns anything into a true array. | |
Returns: Array | |
Translate all items in an array to another array of items. | |
Returns: Number | |
Determine the index of the first parameter in the Array (-1 if not found). | |
Returns: Array | |
Merge two arrays together. | |
Returns: Array | |
Remove all duplicate elements from an array of elements. Note that this only works on arrays of DOM elements, not strings or numbers. |
Test operations:
Name | Type |
Returns: Boolean | |
Added in jQuery 1.3 Determine if the parameter passed is an array. | |
Returns: Boolean | |
Determine if the parameter passed is a Javascript function object. |
String operations:
Name | Type |
Returns: String | |
Remove the whitespace from the beginning and end of a string. |
URLs:
Name | Type |
Returns: String | |
Serializes an array of form elements or an object (core of .serialize() method). |