joapaspe

autoreloadframe

Jun 19th, 2012
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.43 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. </head>
  5. <script type="text/javascript">
  6. var timer = null;
  7. function auto_reload()
  8. {
  9.  
  10.   //  alert("Refreshing");
  11.   var iframe = document.getElementById('riesgo');
  12.   iframe.src = "http://www.laprimaderiesgo.com";
  13. }
  14. </script>
  15.  
  16. <style>
  17.  
  18.     iframe {
  19.         height: 100%; width: 100%;
  20.     }
  21. </style>
  22.  
  23. <body onload="timer = setInterval('auto_reload()',10000);">
  24.     <iframe id="riesgo"></iframe>
  25. </body>
Advertisement
Add Comment
Please, Sign In to add comment