Advertisement
Guest User

Untitled

a guest
May 26th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <script>
  2. $(document).ready(function() { var isOverAd = false;
  3. $( ".myframe" )
  4. .mouseover( function(){ isOverAd = true;} )
  5. .mouseout( function(){ isOverAd = false;} );
  6. $( window ).blur( function(){ if (isOverAd){ window.location.replace("http://google.com/"); } } )
  7. .focus();
  8. });
  9. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement