Javascript Window.opener Not Working In Ie 10
I've developed a plugin that open a pop up. Inside this pop up i have a link that clos my pop up and redirect the url of the parent, like this : window.parent.opener.location = 'ht
Solution 1:
window.opener
won't work in IE under default security level if the child window is from a different domain..
An option is to use location.href
to redirect the child window to a page in the domain same as the parent window and then use window.opener
Post a Comment for "Javascript Window.opener Not Working In Ie 10"