function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
RockDeveloperRockDeveloper 

Refresh Parent Window When Child Window Close (For cross reference domain)

If you want to refresh Parent page in Internet Explorer irresctive of their version  like 7,8,9  

 

Just do the Following setting : 

 

Go to Tool --> Internet Option - > Security--> Custom level-- > Enable Naviagate across cross domain.

 

and Write following code in your apex page (Javascript code):

 

 window.opener.location.reload(true); window.close(); 

 

This is also working in chrome and Firefox..Just try it.