Your question is unclear. You can have one or more of the links:
HTML Code:
<li><a href="external.htm" rel="ajaxcontentarea">Bird</a></li>
expand a tab in another tab group using its onmousedown event:
Code:
<li><a href="external.htm" onmousedown="expandtab('tabs2', 3);" rel="ajaxcontentarea">Bird</a></li>
This will carry out both actions virtually simultaneously.
Or, you can place the expandtab link on an external page for use in the current (or any) tab group, just put something like this on whichever external page that you want it to appear on:
HTML Code:
<a href="javascript: expandtab('maintab', 2)">Select 3rd tab of "maintab"</a>
This will make it available when that external page is loaded into a tab.
Bookmarks