In javascript, Is there a way to know if the navigator is fullscreen ? I mean real fullscreen (F11 with chrome).
I need to propose it to the user only if he hasn't done it yet.
In javascript, Is there a way to know if the navigator is fullscreen ? I mean real fullscreen (F11 with chrome).
I need to propose it to the user only if he hasn't done it yet.
For new browsers, this will work
function isFullScreen(){
return (!window.screenTop && !window.screenY)
}