That's odd. I'm going to set this up locally and give it a try. In the meantime, restore to default and find the following lines (94-100):
Code:
if (ajaxinfo.status=="none" || ajaxinfo.status=="loading")
this.ajaxloadcontent($targetHeader, $targetContent, config, function(){ddaccordion.expandit($targetHeader, $targetContent, config, useractivated, directclick)})
else if (ajaxinfo.status=="cached"){
$targetContent.html(ajaxinfo.cacheddata)
ajaxinfo.cacheddata=null
ajaxinfo.status="complete"
}
And replace them with
Code:
if (ajaxinfo.status=="none" || ajaxinfo.status=="loading" || ajaxinfo.status=="cached") {
ajaxinfo.status = "none";
this.ajaxloadcontent($targetHeader, $targetContent, config, function(){ddaccordion.expandit($targetHeader, $targetContent, config, useractivated, directclick)})
}
To see if that works
Bookmarks