Skip to content

Instantly share code, notes, and snippets.

@juanbzpy
Forked from perpetual-hydrofoil/reloader.html
Created March 16, 2013 16:32
Show Gist options
  • Save juanbzpy/5177193 to your computer and use it in GitHub Desktop.
Save juanbzpy/5177193 to your computer and use it in GitHub Desktop.
<html>
<body style="padding:0; margin:0;">
<!-- reloader.html -->
<iframe id=reloader src="/" style="margin:0;border:none;padding:0;height:100%;width:100%"></iframe>
<script>
(function test() {
document.getElementById('reloader').src = document.getElementById('reloader').src;
setTimeout(test, 500); // 500ms = 1/2 second
})();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment