Obsolete
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
The Document.fullscreen
read-only property reports whether or not the document is currently displaying content in fullscreen mode.
Although this property is read-only, it will not throw if it is modified (even in strict mode); the setter is a no-operation and it will be ignored.
This property is deprecated; test if Document.fullscreenElement
is not null
instead.
var isFullScreen = document.fullscreen;
Boolean
that is true
if the document is being displayed in fullscreen mode; otherwise it's false
.function isDocumentInFullScreenMode() { // Better: use fullscreenElement method! return document.fullscreen; }
Specification | Status | Comment |
---|---|---|
Fullscreen API The definition of 'Document.fullscreen' in that specification. | Living Standard | Initial definition (as an obsolete property). |
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support |
(Yes) as webkitIsFullScreen
|
9.0 (9.0) as mozFullScreen 49.0 (49.0) (behind full-screen-api.unprefix.enabled
| ? | ? |
(Yes) as webkitIsFullScreen
|
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | ? | 9.0 (9.0) as mozFullScreen 49.0 (49.0) (behind full-screen-api.unprefix.enabled
| ? | ? | ? |
© 2005–2017 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/document/fullscreen