Sunday, November 4, 2007

To refresh parent window from pop-up window

window.opener.location.href = window.opener.location.href;
if (window.opener.progressWindow) {
window.opener.progressWindow.close()
}
window.close();

How to refer to parent window form properties from pop-up window JS?


approvedCountIDC = window.opener.document.getElementById("approvedCountIDC");

How to set parent window form properties from pop-up window JS?

window.opener.document.getElementById("approvedCountIDC").value = 'abc';

No comments: