When I create a tab, I add a special option
Code:
var opt = { title: "...", mySpecialOption : 9 };
$("#tt").tabs('add', opt);
How do I obtain a reference to a tab by 'mySpecialOption'? I. E.
Code:
var tab = getTab(9); /* Should return a reference to the tab created above */
Thanks.

