I got a question regarding Javascript on mobile Safari.

I am opening a new window from JS code like this:

gameWindow = window.open("http://site/folder/index.html","Windowname");
gameWindow.opener = self;

The last line I added because I thought this would solve the problem. Maybe the opener element was not set but it still does not work. What I am trying to do in the opened window is simply:

if( window.opener && window.opener.specificFunction ){
  window.opener.specificFunction(1, 2);  // call the function
}
window.close();

It never closes the window or calls the function on the opener. Also when I try to use the mobile Safari's window overview to close that window, it does not call the code on it's opener.

Does anyone know, what I am doing wrong here?

link|improve this question

50% accept rate
I found the bug It was completely unrelated to the problem and I just wanted to state that window.opener.close() works on mobile Safari. The real bug was an undefined variable. Javascript silently cancelled the current function scope and never closed the window as it never reached the window.opener.close() code. – Nonlinearsound May 10 '11 at 15:27
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.