Fullscreen of IE

  • Thread starter Thread starter Steffen Loringer
  • Start date Start date
S

Steffen Loringer

Hi,

can I force the InternetExplorer to fullscreen mode (F11) with my code?
Sometimes webpages open up a window without menubars etc.

Thanks
Steffen
 
i think u hv to use frames
for that

amit
Steffen Loringer said:
Hi,

can I force the InternetExplorer to fullscreen mode (F11) with my code?
Sometimes webpages open up a window without menubars etc.

Thanks
Steffen
 
Use fullscreen=yes inside window.open function:

window.open('mywindow.aspx', '', fullscreen=yes');
 
Back
Top