Last active
June 29, 2019 07:08
-
-
Save robshep/65340c7d91a392283ea0010e3c7cb41d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <body> | |
| <h1 id="h">Hi 3</h1> | |
| <script src="https://code.jquery.com/jquery-3.4.1.slim.js"></script> | |
| <script> | |
| function enterFullscreen() { | |
| var element = document.documentElement; | |
| // Check which implementation is available | |
| var requestMethod = element.requestFullscreen || | |
| element.webkitRequestFullscreen || | |
| element.webkitRequestFullScreen || | |
| element.mozRequestFullScreen || | |
| element.msRequestFullscreen; | |
| if (requestMethod) { | |
| requestMethod.apply(element); | |
| } | |
| } | |
| $("#h").on("click touchstart", function(){ enterFullscreen() }); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment