Document.fullscreenEnabled
The read-only fullscreenEnabled
property on the Document
interface indicates whether or not full-screen mode is available.
Full-screen mode is available only for a page that has no windowed plug-ins in any of its documents, and if all <iframe>
elements which contain the document have their allowfullscreen
attribute set.
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.
Syntax
var isFullscreenAvailable = document.fullscreenEnabled;
Value
A boolean value which is true
if the document and the elements within can be placed into full-screen mode by calling Element.requestFullscreen()
. If full-screen mode isn't available, this value is false
.
Example
In this example, before attempting to request full-screen mode for a <video>
element, the value of fullscreenEnabled
is checked, in order to avoid making the attempt when not available.
function requestFullScreen() { if (document.fullscreenEnabled) { videoElement.requestFullScreen(); } else { console.log('Your browser cannot use fullscreen right now'); } }
Specifications
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
fullscreenEnabled |
71
20
|
12 |
64
10
|
11 |
58
15
12.1-15
|
6 |
71
Yes
|
71
25
|
64
10
|
50
14
12.1-14
|
12
Only available on iPad, not on iPhone.
|
10.0
1.5
|
See also
- Fullscreen API
- Guide to the Fullscreen API
Element.requestFullscreen()
Document.exitFullscreen()
Document.fullscreenElement
-
:fullscreen
and::backdrop
- The
<iframe>
allowfullscreen
attribute
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Document/fullscreenEnabled