:wave:
Can anybody help me...
-->How can I make a webpage start with no menubars, scrollbars oe automaticly when I start a webpage from a browsers adressbar.
(the page shal be shown on a public screen)
Thanks!
:thumb:
Printable View
:wave:
Can anybody help me...
-->How can I make a webpage start with no menubars, scrollbars oe automaticly when I start a webpage from a browsers adressbar.
(the page shal be shown on a public screen)
Thanks!
:thumb:
If you want it to not have anything but the display section (meaning no title bar) then you can do three things:
1. use the fullscreen attribute(mainly works for IE . . . not FF or Opera):
window.open(URL, '', 'fullscreen=yes, scrollbars=auto');
2. Create a user defined window. This means that the user chooses to have no titlebar or menu or anything like that.
3. Use DHTML.
However if you want to keep the titlebar the just create a popup:
where URL is replaced with the page that you want to openCode:window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=780,height=780');");