..." />   ..." />   ..." />   ..." />
By using this site, you agree to our Privacy Policy and our Terms of Use. Close

Gaming - I am a cheater! - View Post

Here's the code if anyone wants to use it for something similar. Just replace "URL" with the site you want refreshed.

<html>
    <head>
        <script type="text/javascript">
            var i = 0;
            function loadFrame(){
                var secs = 65000;
                i = i+1;
                document.getElementById('frame1').innerHTML = "<h3>Called " + i + " times</h3><br />" +
                    "<iframe src='URL' width='100%' height='500'></iframe>";
                setTimeout("loadFrame()", secs);
            }
        </script>
    </head>
    <body onload="loadFrame();">
        <h1>Page Refresher</h1>
        <div id="frame1"></div>
    </body>
</html>