ashpassword
Programmer
In My New Window I want to display some progress bar or showing some messages like "Generating..." before generating PDF and HTML document.
I am opening a new window as follows:
var ScreenWidth=window.screen.width;
var ScreenHeight=window.screen.height;
var movefromedge=0;
placementx=(ScreenWidth/2)-((800)/2);
placementy=(ScreenHeight/2)-((500+50)/2);
WinPop=window.open(URL,"","width=800,height=500,toolbar=0,location=0,directories=0,status=1,scrollbars=1,menubar=1,resizable=1,left="+placementx+",top="+placementy+",screenX="+placementx+",screenY="+placementy+","
How can I achieve this?
I am opening a new window as follows:
var ScreenWidth=window.screen.width;
var ScreenHeight=window.screen.height;
var movefromedge=0;
placementx=(ScreenWidth/2)-((800)/2);
placementy=(ScreenHeight/2)-((500+50)/2);
WinPop=window.open(URL,"","width=800,height=500,toolbar=0,location=0,directories=0,status=1,scrollbars=1,menubar=1,resizable=1,left="+placementx+",top="+placementy+",screenX="+placementx+",screenY="+placementy+","
How can I achieve this?