Odyss3us
Odyss3us

Reputation: 6635

jQuery tools tabs fade effect

I used jQuery tools to create a tabs setup, and I would like to incorporate the fade effect, but when I try to do so, it bombs out, here is my code:

$(function() {
    $("#flowtabs").tabs("#flowpanes > div", { history: true, effect: 'fade' });
});

I am assuming that it's because I am also enabling the tabs history?

I am kinda new to all of this, so please be patient! :-)

Thanx in advance!

Upvotes: 0

Views: 1357

Answers (1)

JLB
JLB

Reputation: 26

I had a problem with fade when using the jQueryTools tooltips. It was with the downloaded version. I plugged into their CDN version as a sanity check, and the fades started working properly.

To get the most recent CDN link, visit the download page and look for the Quick Start section

Upvotes: 1

Related Questions