Skip to content Skip to sidebar Skip to footer

Full Screen Browser Window (like F11)

I am creating a web application. How do I change the browser from normal mode to fullscreen mode (like F11), but I don't want to open a popup for this. I want to convert the sam

Solution 1:

Try this javascript code below.

<script>
function fullScreenMode(url) {
window.open(url, '', 'fullscreen=yes, scrollbars=auto');
}

</script>

Post a Comment for "Full Screen Browser Window (like F11)"