Ie: Window.open Returning Null
on a click event, I am running this code: win = window.open(a.href); i = setInterval(function () { if (win.closed) { /* do things */ } }, 250); this works fine in
Solution 1:
Add name to the window:
win = window.open(a.href, "myWin");
Post a Comment for "Ie: Window.open Returning Null"