Is it possible to track a child window if the parent page is reloaded?
I currently open the window like so:
var childWindow;
childWindow= window.open('url...');
and when I want to reopen the same child window I do
childWindow.focus();
The obvious problem is that if the parent window is refreshed then it loses track of the childWindow
and can't focus it. Is there any way to get my reference to the child window back?