user1257836
user1257836

Reputation: 309

window.opener not working in IE 11

window.opener.xyz(); - this is executed from the child page where xyz is a javascript function in the parent window. i am getting Permission denied in the window.opener. THis is happening in IE 11. Please let me know your inputs. thanks.

Upvotes: 0

Views: 10517

Answers (1)

cfnerd
cfnerd

Reputation: 3799

Based on an MSDN article, it is likely a problem with creating an Object in the child page. If so, try creating the Object in the parent page, not in the script in child page.

If that isn't the issue, here are a few Stackoverflow articles that might help your cause:

Why does this javascript cause “Permission Denied” error in IE

Internet Explorer - Check if permission denied

window.opener alternatives

Upvotes: 1

Related Questions