Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

window.opener doesn't work

  • 1 reply
  • 2 have this problem
  • 147 views
  • Last reply by cdman52

more options

I have a website that seems to have just broken with the 18 or 18.0.1 release. The specific code that is breaking is a call to window.opener. The error I see in the console says: TypeError: window.opener.Assignments is undefined

I checked this with IE and FF on our test servers as well as our comparison server (runs last releases version of the code) and they all have the same problem so it's not something that changed in our codebase.

Can anyone tell me why there are javascript errors on calls to window.opener with the latest release and how I can work around this?

I have a website that seems to have just broken with the 18 or 18.0.1 release. The specific code that is breaking is a call to window.opener. The error I see in the console says: TypeError: window.opener.Assignments is undefined I checked this with IE and FF on our test servers as well as our comparison server (runs last releases version of the code) and they all have the same problem so it's not something that changed in our codebase. Can anyone tell me why there are javascript errors on calls to window.opener with the latest release and how I can work around this?

Chosen solution

I think I found the answer to my own question. In case anyone stumbles on this and it's useful.

I think the problem was that the code was calling window.opener.form when it appears in firefox you have to call window.opener.document.form. Since both work in FF and IE and since it seems there are only a few places in the code where we aren't calling window.opener.document I'll just update the code to do that.

Read this answer in context 👍 2

All Replies (1)

more options

Chosen Solution

I think I found the answer to my own question. In case anyone stumbles on this and it's useful.

I think the problem was that the code was calling window.opener.form when it appears in firefox you have to call window.opener.document.form. Since both work in FF and IE and since it seems there are only a few places in the code where we aren't calling window.opener.document I'll just update the code to do that.