Skip to content

Instantly share code, notes, and snippets.

@idettman
Last active August 29, 2015 14:01
Show Gist options
  • Save idettman/68d66c937fa947a0e06b to your computer and use it in GitHub Desktop.
Save idettman/68d66c937fa947a0e06b to your computer and use it in GitHub Desktop.
Javascript function to get browser window dimensions
function getWindowSize() {
if (window.innerWidth || window.innerHeight) {
return [window.innerWidth,window.innerHeight];
}
else {
return [(document.documentElement.clientWidth||document.body.clientWidth||document.body.scrollWidth),(document.documentElement.clientHeight||document.body.clientHeight||document.body.scrollHeight)];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment