As stated by others, this is not possible for the obvious reasons already mentioned.
Although, since this is a local site, why don't you just create a Chrome shortcut for it in full screen mode:
Create a shortcut for Chrome:
"C:\Users\techiecorner\AppData\Local\Google\Chrome\Application\chrome.exe" --kiosk http:
http://www.techiecorner.com/1941/how-to-auto-start-chrome-in-full-screen-mode-f11-everytime/
UDPATE
Currently (HTML5) there is a proposal for a full-screen API. To use this, you can do something like:
// feature detection if (typeof document.cancelFullScreen != 'undefined' && document.fullScreenEnabled === true) { // mozilla proposal element.requestFullScreen(); document.cancelFullScreen(); // Webkit (works in Safari and Chrome Canary) element.webkitRequestFullScreen(); document.webkitCancelFullScreen(); // Firefox (works in nightly) element.mozRequestFullScreen(); document.mozCancelFullScreen(); // W3C Proposal element.requestFullscreen(); document.exitFullscreen(); }
See official specifications for details.
Peeehaa
source share