Ok, lets try this approach then. Inside the initialization code for your Ajax Tabs, make use of the onajaxpageload event handler to scroll into view the tab container the user just clicked on after the content has been fetched. Here's an example:
Code:
var myflowers=new ddajaxtabs("flowertabs", "flowerdivcontainer")
myflowers.setpersist(true)
myflowers.setselectedClassTarget("link") //"link" or "linkparent"
myflowers.onajaxpageload=function(pageurl){
var tabcontainer=document.getElementById("flowertabs")
if (tabcontainer.scrollIntoView)
tabcontainer.scrollIntoView()
}
myflowers.init()
Make sure "myflowers" correspond to the variable name of your Ajax Tabs instance, and "flowertabs" the ID of your container containing the tabs for that Tabs Interface.
Bookmarks