Click to See Complete Forum and Search --> : Open window browser full screen


locus86
April 1st, 2003, 07:56 AM
Does anyone know how to open a window browser full screen in IE?
I am using window.open(myWebpage.htm)
I can open the page but cannot maximise the page automatically..
What parameters can I specify?

Any idea?

Thanks

lysfjord
April 1st, 2003, 08:19 AM
Ah... had the same problem 3 weeks ago. Got it working now. :)

Not sure if it's efficient code, but it works. (In IE only though).


I got a starter page with this function.

----------
function Custom_openBrWindow() {
window.open('index.asp','Appwindow','fullscreen=yes');
Appwindow.focus();
}
----------


Then, in the new window that is opened I got a function that is called by the onLoad event.

------------
function WindowSetup() {
document.body.style.overflow='hidden';
window.focus();
}