Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save jamiejohnsonkc/f1efaa95a3b2542b14c582a3d60ec5f7 to your computer and use it in GitHub Desktop.

Select an option

Save jamiejohnsonkc/f1efaa95a3b2542b14c582a3d60ec5f7 to your computer and use it in GitHub Desktop.
To get the windows' dimensions :
var width = window.innerWidth;
var height = window.innerHeight;
To get the screen's dimensions :
var width = screen.width;
var height = screen.height;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment