Reputation: 97
I'm using latest version of both jQuery
and jQuery UI
scripts, the problem is that actually can't set any div
to animate using UI effects (toggle, slide, opacity, etc.).
$('#tabs').tabs( {
fx: [ {
opacity:'toggle',
duration:'normal'
}, // hide option
{ opacity:'toggle',
duration:'fast'
}]
}); // show option
The UI tabs works, but don't make any animation when I add the fx parameters. It just shows or hides the tabs, but with no animation at all.
Just downloaded the latest versions today, for the UI have downloaded a custom bundle including ALL the things (effects included, of course).
Don't know if I must use a different bundle.
Upvotes: 1
Views: 245
Reputation: 1015
Your bundle is most likely correct. I'd extract the bundle again and take a look at the index.html to see how they call the effects.
Upvotes: 1