Sure, to extend the remote URL tab selection feature to not only support index based selecting, but also, the id of the desired tab, find the below line in the .js file:
Code:
if (selectedtab!=-1) //if a valid default selected tab index is found
and replace it with the below instead:
Code:
var selectedtabidfromurl=window.location.search.match(new RegExp(this.tabinterfaceid+"=(\\w+)", "i")) //check for "?tabinterfaceid=tabid" in URL
if (document.getElementById(RegExp.$1))
this.expandit(RegExp.$1)
else if (selectedtab!=-1) //if a valid default selected tab index is found
Now, assuming the tab you wish to select is given an ID of "favorite", on a different page, the link to select it on the target page would look something like:
Code:
<a href="target.htm?tabinterfaceid=favorite">Target Page</a>
Bookmarks