When you click on a hyperlink on the popup window the popup closed & the parent window needs to be refreshed.
To satisfy this need you have to write the following code in the hyperlink (“close window”) of popup window.
javascript:self.close(); // closes the current window (Popup).
opener.location.reload(); // Reloads the content of the parent window.
Tags: Javascript





