|
Good point about the URL-matching, it is not necessary if parent is reloading the same url.
So if you want to let the child window manage itself independently, then the child can simply execute:
opener.location.href = opener.location.href; self.close();
less complicated than the self.finish function and modifying onsubmit.
|