-
Refresh parent page upon closing child with JavaScript
I want to close the child tab and refresh the parent tab scenario.
script
function closeRefresh(){
window.opener.location.href=”/{!$CurrentPage.customer.id}”;
window.top.close();
}This script is working fine in Chrome but it is not working in IE .In IE the child tab itself refreshing and loading the parent page in the child tab
Log In to reply.