Hi,
Interesting problem. I have a page which opens a popup window in which users can type comments, and the popup window closes when the user clicks Save, and the javascript code closes the popup window and reloads the parent page to display the new comment.
This works fine on the initial parent page, but when I click on the next page in the pagination results, the reload doesn't happen when the popup window closes.
Thanks in advance for any help.
Interesting problem. I have a page which opens a popup window in which users can type comments, and the popup window closes when the user clicks Save, and the javascript code closes the popup window and reloads the parent page to display the new comment.
Code:
function refreshPage()
{
window.opener.location.reload( true );
window.close();
}
This works fine on the initial parent page, but when I click on the next page in the pagination results, the reload doesn't happen when the popup window closes.
Thanks in advance for any help.