A
Anil Daoud
Hi,
I could really use some help here, this problem is driving me mad .
I open a popup in which I compute data from the opener. Here's some :
code in the opener :
function drawPopup()
{
oPopup.drawTable(somearray);
}
in the popup :
function drawTable(somearray)
{
for (var i=0; i<somearray.length; i++)
{
/* do job */
}
}
oPopup is the return value of window.open (oPopup =
window.open("popup.html", etc.)).
Everything is working fine but sometimes the popup is reloaded (by
javascript). If I close the popup afterwards, and if I open another one,
the following error occurs (under IE6 only):
"Error: The callee (server[not server application]) is not available and
disappeared; all connections are invalid. The call did not execute."
on the first line of the drawTable function.
This only happens under IE 6. With Mozilla 1.7 everything works fine. I
don't understand, because in any other case there's no error. It only
happens if the popup is reloaded.
Please ask if you need any other information. I tried to be clear but
I'm far from fluent in English :/.
Thanks,
I could really use some help here, this problem is driving me mad .
I open a popup in which I compute data from the opener. Here's some :
code in the opener :
function drawPopup()
{
oPopup.drawTable(somearray);
}
in the popup :
function drawTable(somearray)
{
for (var i=0; i<somearray.length; i++)
{
/* do job */
}
}
oPopup is the return value of window.open (oPopup =
window.open("popup.html", etc.)).
Everything is working fine but sometimes the popup is reloaded (by
javascript). If I close the popup afterwards, and if I open another one,
the following error occurs (under IE6 only):
"Error: The callee (server[not server application]) is not available and
disappeared; all connections are invalid. The call did not execute."
on the first line of the drawTable function.
This only happens under IE 6. With Mozilla 1.7 everything works fine. I
don't understand, because in any other case there's no error. It only
happens if the popup is reloaded.
Please ask if you need any other information. I tried to be clear but
I'm far from fluent in English :/.
Thanks,