HTTP/2 302
server: nginx
date: Sat, 11 Oct 2025 16:57:12 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20120920101409
location: https://web.archive.org/web/20120920101409/https://docs.jquery.com/Utilities
server-timing: captures_list;dur=0.493888, exclusion.robots;dur=0.023220, exclusion.robots.policy;dur=0.011515, esindex;dur=0.009887, cdx.remote;dur=146.974664, LoadShardBlock;dur=381.964520, PetaboxLoader3.datanode;dur=220.305867, PetaboxLoader3.resolve;dur=79.100851
x-app-server: wwwb-app221
x-ts: 302
x-tr: 1099
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app221; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sat, 11 Oct 2025 16:57:13 GMT
content-type: text/html; charset=UTF-8
x-archive-orig-date: Thu, 20 Sep 2012 10:14:09 GMT
x-archive-orig-server: Apache/2.2.16 (Debian)
x-archive-orig-x-powered-by: PHP/5.3.16-1~dotdeb.0
x-archive-orig-x-content-type-options: nosniff
x-archive-orig-content-language: en
x-archive-orig-vary: Accept-Encoding,Cookie
x-archive-orig-expires: Thu, 01 Jan 1970 00:00:00 GMT
x-archive-orig-cache-control: private, must-revalidate, max-age=0
x-archive-orig-last-modified: Wed, 19 Sep 2012 18:47:12 GMT
x-archive-orig-connection: close
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Thu, 20 Sep 2012 10:14:09 GMT
link:
; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Tue, 04 Sep 2007 07:56:48 GMT", ; rel="prev memento"; datetime="Tue, 11 Sep 2012 04:11:06 GMT", ; rel="memento"; datetime="Thu, 20 Sep 2012 10:14:09 GMT", ; rel="next memento"; datetime="Sun, 23 Sep 2012 00:22:54 GMT", ; rel="last memento"; datetime="Fri, 11 Apr 2025 03:22:00 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: WIDE-20120920084459-crawl420/WIDE-20120920093212-00074.warc.gz
server-timing: captures_list;dur=0.564832, exclusion.robots;dur=0.024050, exclusion.robots.policy;dur=0.011895, esindex;dur=0.018690, cdx.remote;dur=132.357739, LoadShardBlock;dur=141.364746, PetaboxLoader3.datanode;dur=231.316138, load_resource;dur=380.345322, PetaboxLoader3.resolve;dur=251.065951
x-app-server: wwwb-app221
x-ts: 200
x-tr: 727
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
API/1.3/Utilities - jQuery Wiki
Getting Started
API Reference
Plugins
Support
About jQuery
Wiki: Navigation
Wiki: Toolbox
API/1.3/Utilities
From jQuery Wiki
< API (Redirected from
Utilities )
Browser and Feature Detection: Name Type jQuery.support Returns: Object Added in jQuery 1.3 A collection of properties that represent the presence of different browser features or bugs.
jQuery.browser 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.
jQuery.browser.version Returns: String Deprecated in jQuery 1.3 (see jQuery.support ) The version number of the rendering engine for the user's browser.
jQuery.boxModel 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 jQuery.each( object, callback ) 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.
jQuery.extend( deep , target, object1, objectN ) Returns: Object Extend one object with one or more others, returning the modified object.
jQuery.grep( array, callback, invert ) Returns: Array Finds the elements of an array which satisfy a filter function. The original array is not affected.
jQuery.makeArray( obj ) Returns: Array Turns anything into a true array.
jQuery.map( array, callback ) Returns: Array Translate all items in an array to another array of items.
jQuery.inArray( value, array ) Returns: Number Determine the index of the first parameter in the Array (-1 if not found).
jQuery.merge( first, second ) Returns: Array Merge two arrays together.
jQuery.unique( array ) 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: String operations: Name Type jQuery.trim( str ) Returns: String Remove the whitespace from the beginning and end of a string.
URLs: