Hi guys, i'm developing a website and i'm on html /css /js stage, for a joomla integration later.
Recently I tried to implement a tab with multiple slides, each one in a tab as you can see onhttp://www.consultorawalme.com/maosvi/inter.php
Everything works fine, except for the next prev buttons that are on the slideshow of the first tab, they don't work, but the slidetabs (the little circles there) works great, hope someone can help me.
Thanks
Recently I tried to implement a tab with multiple slides, each one in a tab as you can see onhttp://www.consultorawalme.com/maosvi/inter.php
$(function() {
// setup ul.tabs to work as tabs for each div directly under div.panes
$("ul.tabs").tabs("div.panes > div");
$(".slidetabs").tabs(".images > div", {
// enable "cross-fading" effect
effect: 'fade',
fadeOutSpeed: "slow",
// start from the beginning after the last tab
rotate: true
// use the slideshow plugin. It accepts its own configuration
}).slideshow(
);
});
Everything works fine, except for the next prev buttons that are on the slideshow of the first tab, they don't work, but the slidetabs (the little circles there) works great, hope someone can help me.
Thanks
