Hi,
I am trying to load values from child popup window to Parent window.
I used the below code to load the values from popup window to parent widow.
Its working well in IE as I could close the child window and also could load the values to parent. But in firefox I am not able to close the window. But in behind of child window I could see the values in the textbox from Child window.But not able to close the window.
I believe the erro comes in this line
opener.loadReturnedValue(ID, Name);. when I removed this one I could close the window. Here it is the code I am using.
function returnValue() {
if (opener && !opener.closed) {
var ID = document.getElementById("hdF").value;
var Name = document.getElementById(" ...
Go to the complete details ...