With iframes different browsers may cache the contents in slightly different way. Anyway, try this to minimize the chances of caching. First, find the line:
<iframe id="tabiframe" name="tabiframe" src="http://www.google.com" width="98%" height="350px"></iframe>
The code in red is new, and should be added in. Then for the script itself, replace the line:
Code:
document.getElementById("tabiframe").src=selectedtablink
with:
Code:
window.frames["tabiframe"].location.replace(selectedtablink)
If that doesn't work, try this instead:
Code:
window.frames["tabiframe"].location.replace(selectedtablink)
try{
window.frames["tabiframe"].location.reloadz(true)
}
catch(e){}
Bookmarks