I have an HTML5 offline app (i.e. there\'s no server-side component/code).
It basically has two windows (parent and child). However, in some instan
Can you call something on your opener that tells it to reload and reopen the popup to a page?
e.g.
//in popup
window.opener.doReload('popup_page_name.html');
window.close();
//in opener
function doReload(popupURL){
setSomeFormField(popupURL);
someForm.submit();
}
then in your server-side code, if you had the popup set, add the code to re-launch it.