Skip to content

Instantly share code, notes, and snippets.

@tomzmtl
Created October 15, 2015 15:06
Show Gist options
  • Save tomzmtl/68f1a192b15ef196a6c0 to your computer and use it in GitHub Desktop.
Save tomzmtl/68f1a192b15ef196a6c0 to your computer and use it in GitHub Desktop.
Get viewport dimensions, vanilla JS
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