|
-
April 1st, 2003, 08:56 AM
#1
Open window browser full screen
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
-
April 1st, 2003, 09:19 AM
#2
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();
}
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|