I have a page that I want full screen. I have javascript that opens the page fullscreen with the following javascript code
function fullScreen(theURL) {var newWind = window.open(theURL, '', "fullscreen=yes, scrollbars=no, title=no, menubar=no, titlebar=no");}
however when the screen opens there is a title bar and a status line on the bottom of the screen. This code works fine in development but in production it shows the title bar and status bar.
I would appreciate any help on this.
Mike
function fullScreen(theURL) {var newWind = window.open(theURL, '', "fullscreen=yes, scrollbars=no, title=no, menubar=no, titlebar=no");}
however when the screen opens there is a title bar and a status line on the bottom of the screen. This code works fine in development but in production it shows the title bar and status bar.
I would appreciate any help on this.
Mike