I am dynamically adding tabs to my page using the following script:

var tabs = $("#tabs");
$.each(results, function(index, item) {
    tabs.tabs("add","get_tab_content.aspx?tab=" + item.key, item.value);
});

where results contains json data.

This all works find, except for when I try to get the tab id via the following script:

$("li.ui-tabs-selected").attr("id")

That line returns nothing, as if an id is not set for the tabs in the loop above.

However, that line works fine if I manually type add tabs and ids e.g.

<div id="tabs">
    <ul>
        <li class="tab" id="tab_1"><a href="tab0.htm">Home</a></li>
        <li class="tab" id="tab_2"><a href="tab1.htm">Default</a></li>
    </ul>
</div>

For this manual html, the line $("li.ui-tabs-selected").attr("id") returns either tab_1 or tab_2.

How do I get the id of the tab from when I create tabs using the loop above? I am assuming I need to give them id's when adding the tabs? But that is just an assumption. If that is the case, how do I give them ids?

link|improve this question

This usually occurs when you invoke "$("li.ui-tabs-selected").attr("id")" before the tab being created. Can you show more of the source code in jsfiddle? – Yman May 19 '11 at 14:29
feedback

1 Answer

up vote 1 down vote accepted

It does not add ids because it does not need to.

It uses the index of the tab to identify them.

Why do you need to have an id on them ?


update

To add an id for each tab you can do the following (assuming that you use the code you provided in your question where the new tabs are added at the end by default)

tabs.tabs("add","get_tab_content.aspx?tab=" + item.key, item.value)
    .find('>ul>li:last') // find the last li element, the tab we just added
    .attr('id',item.id); // use whatever id you want here ..i assumed you have an id in your json..

example: http://jsfiddle.net/gaby/7Grb8/


update 2

if you want to do it with the index, then you should use the var selected = tabs.tabs( "option", "selected" ); as described in the docs

link|improve this answer
So I can tell which tab is assigned to a specific user, as each tab has different content based on the user logged in. So does that mean it is not possible to add an id to a dynamic tab? – oshirowanen May 19 '11 at 14:22
If it is not possible to add an id to a dynamic tab, how do I get the index of the selected tab? Just means I will have to change the structure of my application a little to use the index instead of the id. – oshirowanen May 19 '11 at 14:24
@oshirowanen, updated answer with some code on how to add an id. – Gaby aka G. Petrioli May 19 '11 at 14:46
@Gaby aka G. Petrioli, thanks for the code. Is it safe to assume that I can get the id once I've implemented your code using $("li.ui-tabs-selected").attr("id") for dynamic tabs? Yes the key value from the json is the id I want the tabs to have. – oshirowanen May 19 '11 at 14:51
@Gaby aka G. Petrioli, It's working nicely. Thanks for the help. – oshirowanen May 19 '11 at 15:01
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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