I have a page with a div #container
which I would like to have go into full screen mode (or at least request to go into full screen mode) on supported browsers.
I downloaded this plugin and although the example all show using a button to enter fullscreen, I'd like to do it on load.
I tried:$(window).load(function() {
if($.support.fullscreen){
$('#container').fullScreen();
}
});