Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <button onclick="openFullscreenTab()">Fullscreen</button>
- <script>
- function openFullscreenTab() {
- var newTab = window.open("https://example.com/game", "_blank");
- newTab.onload = function() {
- newTab.document.documentElement.requestFullscreen();
- };
- }
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement