Advertisement
Guest User

Untitled

a guest
Sep 25th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function PostToNewWindow() {
  2.     var originalTarget = document.forms[0].target;    // Note the var!
  3.     document.forms[0].target = '_blank';
  4.     window.setTimeout(function() {                    // Use a function with setTimeout,
  5.         document.forms[0].target = originalTarget;    // not least so it has access to
  6.     }, 600);                                          // local vars like `originalTarget`.
  7.     return true;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement