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?