ในเบราว์เซอร์ที่ใหม่กว่าเช่น Chrome 15, Firefox 10, Safari 5.1, IE 10 สิ่งนี้เป็นไปได้ นอกจากนี้ยังเป็นไปได้สำหรับ IE ที่เก่ากว่าผ่าน ActiveX ขึ้นอยู่กับการตั้งค่าเบราว์เซอร์
นี่คือวิธีการ:
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);
ผู้ใช้จำเป็นต้องยอมรับคำขอเต็มหน้าจอก่อนและไม่สามารถทริกเกอร์สิ่งนี้ได้โดยอัตโนมัติใน pageload มันจะต้องถูกทริกเกอร์โดยผู้ใช้ (เช่นปุ่ม)
อ่านเพิ่มเติม: https://developer.mozilla.org/en/DOM/Using_full-screen_mode