2 * jQuery UI Effects Fade 1.8.24
4 * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
5 * Dual licensed under the MIT or GPL Version 2 licenses.
6 * http://jquery.org/license
8 * http://docs.jquery.com/UI/Effects/Fade
11 * jquery.effects.core.js
13 (function( $, undefined ) {
15 $.effects
.fade = function(o
) {
16 return this.queue(function() {
18 mode
= $.effects
.setMode(elem
, o
.options
.mode
|| 'hide');
20 elem
.animate({ opacity
: mode
}, {
23 easing
: o
.options
.easing
,
24 complete: function() {
25 (o
.callback
&& o
.callback
.apply(this, arguments
));