Results 1 to 3 of 3

Thread: Detect full-screen browser

  1. #1

    Thread Starter
    Frenzied Member Lightning's Avatar
    Join Date
    Oct 2002
    Location
    Eygelshoven
    Posts
    1,611

    Detect full-screen browser

    Hi all,
    Does anyone know how to detect if IE is full-screen (user pressed F11) or regular view.

  2. #2

    Thread Starter
    Frenzied Member Lightning's Avatar
    Join Date
    Oct 2002
    Location
    Eygelshoven
    Posts
    1,611

    Angry


    BUMP

  3. #3
    Addicted Member jordan23's Avatar
    Join Date
    Dec 2002
    Posts
    166
    I think you posted that in the wrong forum. Try a web orientated forum next time. I will give you a hint though. You should use javascript and detect the screen height and width.

    var w = screen.availWidth||screen.width
    var h = screen.availHeight||screen.height
    function full()
    {
    window.moveTo(0,0)
    window.resizeTo(w,h)

    }

    window.onload=full


    This is just some basic jscript code on changing the height and width to full screen. You would then put this in the body tag.
    <body onload = "full()">

    Hope this helps some.

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