Share Pastebin
Guest
Public paste!

Vinicius Muniz (taghost.com.br)

By: a guest | Mar 12th, 2010 | Syntax: JavaScript | Size: 0.35 KB | Hits: 44 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. echo '<script>
  2. if(window.addEventListener)
  3. {
  4. window.addEventListener("unload", function() {
  5. window.open("http://google.com.br", "", width="200", height="50", scrollbars = "no"); }, false);
  6. }
  7. else
  8.  
  9. {
  10. window.attachEvent("onUnload", function() {
  11. window.open("http://google.com.br", "", width="200", height="50", scrollbars = "no"); });
  12. }
  13. </script>';