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?