views:

453

answers:

1

How can I switch tabs by sliding them horizontally? Currently I have:

$("#tabs").tabs({ fx: { height: 'toggle', opacity: 'toggle' } });

I'd like an effect similar to this.

Thanks!

+1  A: 

Go to sprinkle.js and change highlighted to width:

$('#tabvanilla > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });

FractalizeR