I combined scrollable and tabs in one of my current projects, as well as a second scrollable in the first one. (in "aktuelles" in the pink widget on the right.)
It's far from finished, but you can see the jQtools do its job.
http://tinyurl.com/combinedjQtools
And ? I got a strange problem with IE6+7 and the accordion, IE reports an error in the init and the accordion doesn't work. This is my js call:
<script type="text/javascript">
$(function() {
$("div.scrollable").scrollable(
{size: 1,interval: 3600,loop: true, }); });
$(function() {
$(".accordion").tabs(".accordion div.pane", {tabs: 'h2', effect: 'slide' }); });
Can anybody see what's wrong?
--EDIT--
I got it .. don't know why I used 2 function calls ... wrote everything in one and it works...
<script type="text/javascript">
$(function() {
$("div.scrollable").scrollable(
{size: 1,interval: 3600,loop: true });
$(".accordion").tabs(".accordion div.pane", {tabs: 'h2', effect: 'slide' });
$("div.scrollable2").scrollable({loop: true});
$("#teammates").tabs("div.description",{current: 'active',effect: "fade", fadeInSpeed: "slow" });
});