You can try adding inside the tab in question, specifically, its LI element, a code such as:
Code:
<li><a href="#" class="selected" rel="#default">Tab 1</a></li>
<li onClick="this.scrollIntoView()"><a href="external2.htm" rel="countrycontainer">Tab 2</a></li>
<li><a href="external3.htm" rel="countrycontainer">Tab 3</a></li>
This theoretically should cause the page to jump back to the top of the tab when clicked on. If that doesn't work, it may be because of the (long) delay before your Ajax content is fetched, causing the page's height to change only after the browser has already jumped to the top of the tab, throwing things off again. If so, you can try something else, but let me know if this works first.
Bookmarks