vote up 0 vote down star
1

If I have three tabs:

<div id="tabs">
    <ul>
        <li><a href="#sample-tab-1"><span>One</span></a></li>
        <li><a href="#sample-tab-2"><span>Two</span></a></li>
        <li><a href="#sample-tab-3"><span>Three</span></a></li>
    </ul>
</div>

I would like to swap to #sample-tab-2 by it's name. I know I can switch to a tab if I know it's number, but in the case I've run into I won't know that.

Notes: JQuery 1.3.1 / JQuery-UI 1.6rc6

flag

73% accept rate
So you want to select tab 'Three' no matter where it is? Why do you know the word 'Three' but not the ID or the number? This approach may be problematic if you ever translate your site... can you expand on the problem? – Mr. Shiny and New Feb 23 at 17:27
Sure, what I'm trying to do is described here: stackoverflow.com/questions/572376/… The approach I'm trying now to is change the hash to append a character to the hash name, and then upon page load select that tab(without the char) – Rob Feb 23 at 17:41
Basically <a href="#_sample-tab-1"> would set the window.location to #sample-tab-1, and then when the page is loaded ( index.php#sample-tab-1) switch to #_sample-tab-1 – Rob Feb 23 at 17:43

3 Answers

vote up 2 vote down

You can get the index of the tab by name with the following script:

var index = $('#tabs ul').index($('#simple-tab-2'));
$('#tabs ul').tabs('select', index);
link|flag
vote up 0 vote down

What about an added tab with

$('#tabs').tabs('add',url,'Name');

I would like to select a tab by name (not id), any idea?

link|flag
vote up 0 vote down

If you are changing the hrefs, you can assign an id to the links <a href="#sample-tab-1" id="tab1"><span>One</span></a> so you can find the tab index by it's id.

link|flag

Your Answer

Get an OpenID
or

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