Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Javascript: webkitIsFullScreen property IE equivalent

According to this documentation, Internet Explorer does not support something like webkitIsFullScreen or like mozFullScreen property. I need to read if browser is in full screen mode. Is there any way to get it on IE somehow? THANKS!

like image 726
Ajax Avatar asked Aug 06 '26 08:08

Ajax


1 Answers

Using IE11, an equivalent check would be:

document.msFullscreenElement !== null

Disclosure: I am on the team that worked on Microsoft's implementation of the Fullscreen API.

like image 166
Nick Rotondo Avatar answered Aug 08 '26 22:08

Nick Rotondo