I have an parent-child window. I need to refresh the parent window when the child window is closed. I had tried
When i navigate to different page in the child window , each and every time the parent window is refreshed. I want to refresh it only when the child window is closed. How can i do that?
Code:
<body onunload="window.opener.location.reload();">
Comment