Create, and activate a tab.
Beginners question, so bear with me.
- var tabId = "tab-" + data.id; // Data is an item, which has been clicked.
- $("<li><a href='" + tabId + "'>Some text</a></li>").appendTo("#tabs .ui-tabs-nav");
- $("#tabs").tabs("refresh");
Works fine. However, there's one detail missing: How could I activate the created tab?
Thanks,
Jochen