Hmm don't you mean the Ajax Tabs script (you referenced another script at the top)? I've edited your post for this.
To your question, this is most likely due to the fact that the content is fetched via Ajax, causing the code that initializes jQuery toggle div to not fire, whatever that is. This can be worked around by using the "onajaxpageload" event handler of Ajax Tabs to call that code when the content has been fully fetched. Please see the tutorial on how to use this event handler. The result is something like:
Code:
var countries=new ddajaxtabs("countrytabs", "countrydivcontainer")
countries.setpersist(true)
countries.setselectedClassTarget("link") //"link" or "linkparent"
countries.init()
countries.onajaxpageload=function(pageurl){
if (pageurl.indexOf("myscoop.htm")!=-1){ //if "myscoop" tab is clicked
//Call jQuery toggle DIV initialization code
}
}
Bookmarks