Hello,
I Open new window using window.open to inform the user about saving in progress and once save is done on the parent window I want to close Progress window.
I am not able to close the Progress window its saying Progressbar undefined.
To Open the window:
ProgressBar =window.open("ProgressBar.aspx","Progress","width=170,height=240,left=270,top=180");
To close the window :
function closepopup()
{
if(false == ProgressBar.closed)
{
ProgressBar.close ();
}
else
{
alert('Window already closed!');
}
}
Please help me
Thanks.
I Open new window using window.open to inform the user about saving in progress and once save is done on the parent window I want to close Progress window.
I am not able to close the Progress window its saying Progressbar undefined.
To Open the window:
ProgressBar =window.open("ProgressBar.aspx","Progress","width=170,height=240,left=270,top=180");
To close the window :
function closepopup()
{
if(false == ProgressBar.closed)
{
ProgressBar.close ();
}
else
{
alert('Window already closed!');
}
}
Please help me
Thanks.