Home >Web Front-end >JS Tutorial >How to Make a Browser Window Full Screen Using JavaScript?
Introduction
Achieving a full-screen experience for your website visitors is crucial for immersive content. In the past, this was challenging due to browser compatibility issues. However, with the advent of modern browsers and advancements in JavaScript, it has become possible to make a window go full screen with relative ease.
Solution
To make a visitor's browser go full screen using JavaScript, you can leverage the following approach:
function requestFullScreen(element) { // Supports most browsers and their versions. var requestMethod = element.requestFullScreen || element.webkitRequestFullScreen || element.mozRequestFullScreen || element.msRequestFullScreen; if (requestMethod) { // Native full screen. requestMethod.call(element); } else if (typeof window.ActiveXObject !== "undefined") { // Older IE. var wscript = new ActiveXObject("WScript.Shell"); if (wscript !== null) { wscript.SendKeys("{F11}"); } } } var elem = document.body; // Make the body go full screen. requestFullScreen(elem);
Explanation
Additional Notes
Reference
The above is the detailed content of How to Make a Browser Window Full Screen Using JavaScript?. For more information, please follow other related articles on the PHP Chinese website!