Reputation: 309
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
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
Upvotes: 1