How can I make full screen in JavaScript that works in IE, Firefox and Opera. When I mean full screen I mean one that takes all of your screen
|
This is as close as you can get to full screen in JavaScript:
|
|||||||||||||||||||
|
|
In newer browsers such as Chrome 15, Firefox 10, Safari 5.1, IE 10 this is possible. It's also possible for older IE's via ActiveX depending on their browser settings. Here's how to do it:
The user obviously needs to accept this fullscreen request first. Read more: https://developer.mozilla.org/en/DOM/Using_full-screen_mode |
|||||||||||||
|
|
This code also includes how to enable full screen for Internet Explorer 9, and probably older versions, as well as very recent versions of Google Chrome. The accepted answer may also be used for other browsers.
Sources:
|
|||||||||||
|
|
I've used this...
|
|||
|
|
Luckily for unsuspecting web users this cannot be done with just javascript. You would need to write browser specific plugins, if they didn't already exist, and then somehow get people to download them. The closest you can get is a maximized window with no tool or navigation bars but users will still be able to see the url.
This is generally considered bad practice though as it removes a lot of browser functionality from the user. |
|||
|
|
|
This may support
|
||||
|
|
|
You can use The fullscreen API You can see an example here
|
||||
|
|
|
Here is a complete solution to get in and out of full screen mode (aka cancel, exit, escape)
|
|||
|
|
|
Try this script
For calling from script use this code,
or with hyperlink use this
|
|||
|
|
|
In Firefox 10, you can make the current page go fullscreen (real fullscreen with no window chrome) using this javascript:
|
|||||||
|
|
A Q&D way to go full screen, if you are in a "kiosk" situation, is to feed an F11 to the browser window after it's up and running. This is not pretty starting up and the user might be able to poke a touch screen at the top and get a semi-full-screen view, but feeding the F11 might do in a pinch or just to get started on a project. |
|||
|
|
|
Make any id or class fullscreen, html5 example html5 video http://jsfiddle.net/onigetoc/G4tLy/5/show/ |
|||
|
|
|
Simple example from: http://www.longtailvideo.com/blog/26517/using-the-browsers-new-html5-fullscreen-capabilities/
|
|||
|
|
|
how about using flash and a flah<->javascript bridge (the two of them can communicate quite well)? ...though I can't give you an example of how to code this |
|||
|
|
protected by Community♦ Feb 2 '12 at 13:46
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.


sprintf('Dear user, the best experience with this site is in fullscreen mode. To view this site full screen, press %s.', _get_browsers_full_Screen_key())– Boldewyn Mar 27 '10 at 13:52