You're not tied down to any theme when specifying whether the tab contents are fetched via Ajax or IFRAME. This is all explained on the script page already actually. So to modify the HTML of theme #3 to fetch its contents via Ajax, you would do something like:
Code:
<div id="pettabs" class="indentmenu">
<ul>
<li><a href="external1.htm" rel="#somecontainer" class="selected">Tab 1</a></li>
<li><a href="external2.htm" rel="#somecontainer">Tab 2</a></li>
<li><a href="external3.htm" rel="#somecontainer">Tab 3</a></li>
<li><a href="external4.htm" rel="#somecontainer">Tab 4</a></li>
</ul>
<br style="clear: left" />
</div>
Where "somecontainer" is the ID of the DIV that will house the Ajax fetched content.
Bookmarks