Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lego2012/06ff8d97ce57b3a2c350fce6914f578a to your computer and use it in GitHub Desktop.
Save Lego2012/06ff8d97ce57b3a2c350fce6914f578a to your computer and use it in GitHub Desktop.
<body>
<h1></h1>
<script>
function showBrowserWidth() {
const width = window.innerWidth
document.querySelector('h1').innerText = `Width: ${width}`
}
window.onload=showBrowserWidth
window.onresize=showBrowserWidth
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment