how to change a page to full screen

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • stinger1
    New Member
    • Oct 2006
    • 3

    how to change a page to full screen

    hello..
    how can i change an opend page to the fullscreen mode
    using javascript?(for example: onLoad)
    not window.open.
    i want to change an opened window
    THANKS ALOT
  • ronverdonk
    Recognized Expert Specialist
    • Jul 2006
    • 4259

    #2
    Try myWindow.resize to(800,650);

    Ronald

    Comment

    • stinger1
      New Member
      • Oct 2006
      • 3

      #3
      Originally posted by ronverdonk
      Try myWindow.resize to(800,650);

      Ronald
      this did not work!!
      are you sure that this method works with the window object in javascript?
      try to press F11 now...
      that what i mean...
      thanks alot

      Comment

      • monamac
        New Member
        • Oct 2006
        • 12

        #4
        i think you need to capitalize the "T" in resizeTo and use screen width and height:

        myWindow.resize To(screen.width ,screen.height) ;

        also, i noticed that IE6 makes the user "ok" this kind of "active content".

        hope this helps.

        Comment

        Working...