Advertisement
BRodXI

Fullscreen HTML Code

Jan 19th, 2023 (edited)
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.27 KB | None | 0 0
  1. <button onclick="openFullscreenTab()">Fullscreen</button>
  2.  
  3. <script>
  4. function openFullscreenTab() {
  5.   var newTab = window.open("https://example.com/game", "_blank");
  6.   newTab.onload = function() {
  7.     newTab.document.documentElement.requestFullscreen();
  8.   };
  9. }
  10. </script>
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement