As mentioned above. I did not find a way to get the object of its child windows from the parent window. Probably nothing like the array or windows.childWindows method. After reloading the parent page, you even lost all the bindings created using javascript, for example childWindow = window.open(url,'myChildWindow',opt)
The only possible way I found for FF 3.x is that you know the name of the child window you are looking for. In this case, the window with the same name is opened again, and if it is still open, you should get a lost link. Otherwise, a new window is open. lostWindow = window.open('','myChildWindow','');
Now you need to check if this is your old window or new. For example, some attribute registered in your child window.
if (lostWindow.myProperty == 'yes') you can be sure that this is your lost window.
As I browsed the internet, I found that some people are trying to create a workaround using cookies or in HTML5 with applicationCache .
source share