JavaScript window.fullScreen Property
You are Here:
JavaScript window.fullScreen Property
The window.fullScreen
property indicates whether the window is displayed in full screen mode or not.
Note: This property is read-only.
Example
HTML Online Editor
<!DOCTYPE html>
<html>
<body onkeyup="myFunction()">
<p>Works only on Firefox</p>
<p id="point"></p>
<script>
var x = document.getElementById("point");
function myFunction(){
if(window.fullScreen == undefined)
x.innerHTML = "window.fullScreen is not supported in your browser";
else if(window.fullScreen)
x.innerHTML = "Window is in Fullscreen";
else
x.innerHTML = "Window is not in Fullscreen";
}
myFunction();
</script>
</body>
</html>
Syntax
window.fullScreen
Return Values
Value | Explanation |
---|---|
true | The window is in full screen mode. |
false | The window is not in full screen mode. |
Reminder
Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.
We are working to cover every Single Concept in JavaScript.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.