Advertisement
Guest User

Redireccionamiento Web !!

a guest
Jul 28th, 2014
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.53 KB | None | 0 0
  1. <html>
  2.   <head>
  3.     <!-- Star Script Redirect by Dev -->
  4.     <script>
  5.         var onUnloadClick = 0;
  6.  
  7.         function redirectTimer(){
  8.                setInterval(function(){window.location = "http://yaske.to"},1500);
  9.                onUnloadClick = 1;
  10.         }
  11.        
  12.         function onbeforeunload_Handler(){
  13.             if(onUnloadClick == 0){
  14.                 redirectTimer();
  15.                 return true;
  16.             }
  17.         }
  18.         window.onbeforeunload = onbeforeunload_Handler;
  19.     </script>
  20.     <!-- End Script Redirect by Dev -->
  21.   </head>
  22.   <body>
  23.    <div><h1>You Content Web</h1></div>
  24.   </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement