CaptainLepidus

Reload Page Every 10 Seconds

Apr 4th, 2012
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.21 KB | None | 0 0
  1. <head>
  2. <!--SOME STUFF-->
  3. <script type='text/javascript'>function prepare()
  4. {
  5. setInterval(wReload(),10000);
  6. }
  7. function wReload()
  8. {
  9. window.location.reload();
  10. }
  11. }
  12. </script>
  13. </head>
  14. <body onload='prepare()'>
Advertisement
Add Comment
Please, Sign In to add comment