Reputation: 73
I am trying to get familar with the jQuery Tools - Slideshow from Flowplayer (http://flowplayer.org/tools/tabs/slideshow.html). Has anybody a hint for me how to select e.g. tab2 as start default, or how to switch to another tab when starting?
Thanks in advance,
Juergen
Upvotes: 3
Views: 2088
Reputation: 3254
$(".slidetabs").tabs(".images > div", {
// enable "cross-fading" effect
effect: 'fade',
fadeOutSpeed: "slow",
// start from the beginning after the last tab
rotate: true,
//set your default tab
current: "tab_2" //class name
// use the slideshow plugin. It accepts its own configuration
}).slideshow();
Upvotes: 1
Reputation: 1554
Hey You Should Read this
http://flowplayer.org/tools/documentation/scripting.html#events
its says about it and also
http://flowplayer.org/tools/tabs/index.html is also saying
Upvotes: 0
Reputation: 65264
http://flowplayer.org/tools/tabs/index.html
look for initialIndex
in the configuration property...
Upvotes: 2