OK, you only need the Ajax tabs script linked to the 'top' page. Now, on your external page, you need to have a different id for the maintab -say, maintab2 and a different id for the content area -say, ajaxcontentarea2. Then on the 'top' page the link that loads the external page should look about like so:
Code:
<li><a href="tab2.htm" rel="ajaxcontentarea" onmousedown="window.tab2Init=false;">More Tabs</a></li>
Then on tab2.htm:
Code:
<ul id="maintab2" class="shadetabs" onmouseover="if(!window.tab2Init){startajaxtabs('maintab2');window.tab2Init=true;};">
<li class="selected"><a href="#default" rel="ajaxcontentarea2">Intro</a></li>
<li><a href="externa . . .
You also need to have on tab2.htm a:
Code:
<div id="ajaxcontentarea2" class="contentstyle">
<p>Whatever your default content for these tabs is goes here</p>
</div>
Bookmarks