Currently I have the following script on a page that will refresh an iFrame:
It works great in IE, but unfortunately it doesn't appear to work in Chrome or Firefox. How can I get Chrome and Firefox to auto refresh the iFrame after a set amount of time?
Enkrypted
A+
Code:
<script>
window.setInterval("reloadIFrame();", 5000);
function reloadIFrame() {
document.frames["marquee"].location.reload();
}
</script>
It works great in IE, but unfortunately it doesn't appear to work in Chrome or Firefox. How can I get Chrome and Firefox to auto refresh the iFrame after a set amount of time?
Enkrypted
A+