The script doesn't load any links within the content area using Ajax, only the pages specified in the tabs themselves, for example:
Code:
<ul id="countrytabs" class="shadetabs">
<li><a href="#" class="selected" rel="#default">Tab 1</a></li>
<li><a href="external2.htm" rel="countrycontainer">Tab 2</a></li>
<li><a href="external3.htm" rel="countrycontainer">Tab 3</a></li>
<li><a href="external4.htm" rel="#iframe">Tab 4</a></li>
<li><a href="http://www.dynamicdrive.com">Dynamic Drive</a></li>
</ul>
"external2.htm" for example would be loaded via Ajax, but if inside external2.htm there are links as well, clicking on these links will cause them to be loaded in the browser window itself. It's not a recursive feature in that sense. Now, if you're using the IFRAME option to fetch the external pages, links inside those will be loaded in the IFRAME as well, simply due to the way IFRAMEs behave.
Bookmarks