Skip to content

Instantly share code, notes, and snippets.

@siggiarni
Created April 17, 2015 13:26
Show Gist options
  • Save siggiarni/2e1b05ce1144164bffda to your computer and use it in GitHub Desktop.
Save siggiarni/2e1b05ce1144164bffda to your computer and use it in GitHub Desktop.
<p>
Device width: <span id="device-width"></span>
</p>
<script>
var findDeviceWidth = function() {
var width = (window.innerWidth > 0) ? window.innerWidth : screen.width;
document.getElementById('device-width').innerHTML = width;
};
window.onresize = findDeviceWidth;
findDeviceWidth();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment