Currently, I am working on developing a callback in my application that is responsible for opening a popup, executing some tasks, and then responding to the popup's opener window to indicate that the action has been completed.
In order to communicate with the opener window, the popup utilizes the window.opener.postmessage()
method within the browser.
While this functionality is functioning properly in most browsers, there seems to be an issue with Internet Explorer 11.0.x as it is unable to successfully post the message. Surprisingly, version 11.192.x is able to communicate effectively. I have not yet tested this with IE 9/10.
The specific error encountered is a Permission Denied
message, and the window.opener
property is returning as undefined
. I am looking for a solution to address this challenge and enable my popup to send messages to the opener window in Internet Explorer 11.0.x.
Any assistance would be greatly appreciated. Thank you!