SyntaxFix
Write A Post
Hire A Developer
Questions
You can access parent window using 'window.opener', so, write something like the following in the child window:
<script> window.onunload = refreshParent; function refreshParent() { window.opener.location.reload(); } </script>