diff --git a/ui/jquery.effects.core.js b/ui/jquery.effects.core.js index 2d0c873d4..ed7eb099e 100644 --- a/ui/jquery.effects.core.js +++ b/ui/jquery.effects.core.js @@ -418,6 +418,10 @@ function _normalizeArguments(effect, options, speed, callback) { speed = null; options = {}; } + if ($.isFunction(speed)) { + callback = speed; + speed = null; + } if (typeof options == 'number' || $.fx.speeds[options]) { callback = speed; speed = options;