Monday, September 7, 2009

JavaScript function to Reload Parent when child pop up closed

function ReloadParent()
{
window.opener.document.location.reload();
window.open('','_self','');window.close();
return true;
}

No comments:

Post a Comment