I am currently working on a private web application that is not going to be released to the public. It is relatively straightforward and will run on Google Chrome.
Does anyone have a solution for forcing the browser to enter Full Screen Mode when the DOM is ready? I was thinking to simply simulate the keypress of the F11 key, but I don’t know if this is possible.
Does anyone have a jQuery solution, other than resizing the window to the available width and hiding the navigation (not an ideal solution).
As stated by others this isn’t possible for obvious reasons already mentioned.
Although since it is a local site why don’t you just create a Chrome shortcut for it in fullscreen:
Create a shortcut to Chrome:
http://www.techiecorner.com/1941/how-to-auto-start-chrome-in-full-screen-mode-f11-everytime/
UDPATE
By now (HTML5) there is a proposal for a full screen API. To use this you could do something like:
For more information see the official specs.