posted 16 years ago
on click of modify button, the child window is opening by calling window.open function. after that i modified the text areas in the child window screen and save them. on close in the child window i've written the below code, which is refreshing the parent window.
opener.focus();
opener.location.href = opener.location;
self.close();
then again i click on modify button and close the child window. again its refresh the parent page. i tried many times and it working fine. but, the same code is deployed on the on-site environment. but their page is getting refreshed only the first time. why its not refreshing second time?