Are you talking about an Ajax fetched content, or IFRAME? With the former, you can disable busting of cache by modifying the code in red in the .js file:
Code:
bustcacheparameter=(ajaxfriendlyurl.indexOf("?")!=-1)? "&"+new Date().getTime() : "?"+new Date().getTime()
to just:
Code:
bustcacheparameter=""
For the later, try modifying the line:
Code:
window.frames["_ddajaxtabsiframe-"+contentdivid].location.replace(pageurl) //load desired page into iframe
to:
Code:
window.frames["_ddajaxtabsiframe-"+contentdivid].location=pageurl //load desired page into iframe
Bookmarks