Hello,
I load a page in a new window like this
winSpecs='toolbar=no,status=yes,scrollbars=yes,width=400,height=450,resizable=yes,left=200,top=100'
srcFile = 'cellDetails.asp';
cellWin=window.open(srcFile,'cellDetails',winSpecs);
return true;
Is it possible to hide the status bar once the window loading is finished. I want to show a message in the status bar like "Loading Please wait.." until the page is loaded. Once it is loaded I want to remove the status bar.
Any Ideas??
I load a page in a new window like this
winSpecs='toolbar=no,status=yes,scrollbars=yes,width=400,height=450,resizable=yes,left=200,top=100'
srcFile = 'cellDetails.asp';
cellWin=window.open(srcFile,'cellDetails',winSpecs);
return true;
Is it possible to hide the status bar once the window loading is finished. I want to show a message in the status bar like "Loading Please wait.." until the page is loaded. Once it is loaded I want to remove the status bar.
Any Ideas??