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 torgeir/9343191 to your computer and use it in GitHub Desktop.
Save torgeir/9343191 to your computer and use it in GitHub Desktop.
JavaScript cross-browser @media (width) and @media (height) values
// http://stackoverflow.com/questions/1248081/get-the-browser-viewport-dimensions-with-javascript
var w = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
var h = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment