Skip to content

Instantly share code, notes, and snippets.

@jbutko
Created June 4, 2014 13:04
Show Gist options
  • Save jbutko/7072d6fe7eedc1fc02c0 to your computer and use it in GitHub Desktop.
Save jbutko/7072d6fe7eedc1fc02c0 to your computer and use it in GitHub Desktop.
js: Get window width and height
var w = window,
d = document,
e = d.documentElement,
g = d.getElementsByTagName('body')[0],
x = w.innerWidth || e.clientWidth || g.clientWidth,
y = w.innerHeight|| e.clientHeight|| g.clientHeight;
alert(x + ' × ' + y);
// From http://stackoverflow.com/questions/3437786/how-to-get-web-page-size-browser-window-size-screen-size-in-a-cross-browser-wa
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment