vote up 0 vote down star

I'm using Jquery and Jquery UI with the following:

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

Right now it automatically sets the first tabs as the default tab that is selected when the document loads. How do I override this and make the second tab the default selected tab when the page loads?

flag

1 Answer

vote up 4 vote down

$('#tabvanilla > ul').tabs({ selected: 1 });

More details on the specifications page.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.