Skip to content

Instantly share code, notes, and snippets.

@lzcabrera
Created October 19, 2016 19:32
Show Gist options
  • Save lzcabrera/b5ae1b66c6833b7744c28edb2e5f22c7 to your computer and use it in GitHub Desktop.
Save lzcabrera/b5ae1b66c6833b7744c28edb2e5f22c7 to your computer and use it in GitHub Desktop.
get window size
var size = {
width: window.innerWidth || document.body.clientWidth,
height: window.innerHeight || document.body.clientHeight
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment