HTTP/2 302
server: nginx
date: Sat, 11 Oct 2025 04:49:32 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20120920100838
location: https://web.archive.org/web/20120920100838/https://docs.jquery.com/Effects
server-timing: captures_list;dur=0.664014, exclusion.robots;dur=0.021152, exclusion.robots.policy;dur=0.010874, esindex;dur=0.011813, cdx.remote;dur=5.847007, LoadShardBlock;dur=206.246406, PetaboxLoader3.datanode;dur=101.098578, PetaboxLoader3.resolve;dur=11.688422
x-app-server: wwwb-app219
x-ts: 302
x-tr: 262
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app219; 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 04:49:33 GMT
content-type: text/html; charset=UTF-8
x-archive-orig-date: Thu, 20 Sep 2012 10:08:38 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:08:38 GMT
link:
; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 10 Jan 2007 18:50:34 GMT", ; rel="prev memento"; datetime="Fri, 14 Sep 2012 04:17:49 GMT", ; rel="memento"; datetime="Thu, 20 Sep 2012 10:08:38 GMT", ; rel="next memento"; datetime="Tue, 15 Jan 2013 10:07:04 GMT", ; rel="last memento"; datetime="Wed, 03 Sep 2025 00:19:21 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.505745, exclusion.robots;dur=0.022378, exclusion.robots.policy;dur=0.011619, esindex;dur=0.009809, cdx.remote;dur=26.628215, LoadShardBlock;dur=192.669619, PetaboxLoader3.datanode;dur=158.609197, PetaboxLoader3.resolve;dur=154.972319, load_resource;dur=143.197034
x-app-server: wwwb-app219
x-ts: 200
x-tr: 423
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/Effects - jQuery Wiki
Getting Started
API Reference
Plugins
Support
About jQuery
Wiki: Navigation
Wiki: Toolbox
API/1.3/Effects
From jQuery Wiki
< API(Redirected from
Effects)
Basics:Name | Type |
---|
show( ) | Returns: jQuery |
Displays each of the set of matched elements if they are hidden. |
show( speed, callback ) | Returns: jQuery |
Show all matched elements using a graceful animation and firing an optional callback after completion. |
hide( ) | Returns: jQuery |
Hides each of the set of matched elements if they are shown. |
hide( speed, callback ) | Returns: jQuery |
Hide all matched elements using a graceful animation and firing an optional callback after completion. |
toggle( ) | Returns: jQuery |
Toggle displaying each of the set of matched elements. |
toggle( switch ) | Returns: jQuery |
Toggle displaying each of the set of matched elements based upon the switch (true shows all elements, false hides all elements). |
toggle( speed, callback ) | Returns: jQuery |
Toggle displaying each of the set of matched elements using a graceful animation and firing an optional callback after completion. |
Sliding:Name | Type |
---|
slideDown( speed, callback ) | Returns: jQuery |
Reveal all matched elements by adjusting their height and firing an optional callback after completion. |
slideUp( speed, callback ) | Returns: jQuery |
Hide all matched elements by adjusting their height and firing an optional callback after completion. |
slideToggle( speed, callback ) | Returns: jQuery |
Toggle the visibility of all matched elements by adjusting their height and firing an optional callback after completion. |
Fading:Name | Type |
---|
fadeIn( speed, callback ) | Returns: jQuery |
Fade in all matched elements by adjusting their opacity and firing an optional callback after completion. |
fadeOut( speed, callback ) | Returns: jQuery |
Fade out all matched elements by adjusting their opacity to 0, then setting display to "none" and firing an optional callback after completion. |
fadeTo( speed, opacity, callback ) | Returns: jQuery |
Fade the opacity of all matched elements to a specified opacity and firing an optional callback after completion. |
Custom:Settings:Name | Type |
---|
jQuery.fx.off | Returns: Boolean |
Globally disable all animations. |