Created
November 11, 2025 00:55
-
-
Save jonahwilliams/470ec0279c079472f9b1272e6d3a932f 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
| <!DOCTYPE html> | |
| <head> | |
| <title>Screen Size Test</title> | |
| </head> | |
| <body> | |
| <div id="foo"></div> | |
| <script type="text/javascript"> | |
| function computeSize() { | |
| var width = window.screen.width; | |
| var height = window.screen.height; | |
| document.getElementById("foo").textContent = "Size is " + width + " x " + height; | |
| console.log("updated"); | |
| } | |
| computeSize(); | |
| setInterval(computeSize, 1000); | |
| </script> | |
| </body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment