Reputation: 475
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 same window to fullscreen mode.
The requirement is: there is a button on the page, and it's a toggle button for changing normal mode to fullscreen mode and fullscreen mode to normal mode
Upvotes: 0
Views: 4579
Reputation: 1533
Try this javascript code below.
<script>
function fullScreenMode(url) {
window.open(url, '', 'fullscreen=yes, scrollbars=auto');
}
</script>
Upvotes: 1