Results 1 to 2 of 2

Thread: I want a Full size window in a webbrowser

  1. #1

    Thread Starter
    Registered User
    Join Date
    Feb 2003
    Posts
    8

    Question I want a Full size window in a webbrowser


    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!

  2. #2
    Member
    Join Date
    Oct 2005
    Posts
    35

    Re: I want a Full size window in a webbrowser

    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:

    Code:
    window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=780,height=780');");
    where URL is replaced with the page that you want to open
    Last edited by konithomimo; Dec 21st, 2005 at 03:43 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width