I have been working to create several simple games using just some javascript/css, geared toward use by touchscreen devices. I am wanting to simulate a native app experience on tablets, without bogging down the devices as some of the javascript being used may get RAM intensive.
What I am wondering is if there is a way to push the browser frame to fullscreen mode, in order to prevent accidental taps to the addressbar/back button/ etc. I have thought about just using a dialog to prompt user to f11 to fullscreen, but as most of these games are triggered on timeouts, I would rather not have to have a bunch of popups instructing the user to search for buttons and such.
I don't want to lock them out of their browsers functions, just would like to start the games like a native app. I would prefer to do this without the use of jquery or other plugins/APIs.
Is this possible? Am I likely to trigger anti-virus or other browser protections? Any feedback is much appreciated.