Skip to content

Instantly share code, notes, and snippets.

@w-jerome
Created June 28, 2018 12:18
Show Gist options
  • Save w-jerome/e3ea884a07b95352fb025fd57155d9b8 to your computer and use it in GitHub Desktop.
Save w-jerome/e3ea884a07b95352fb025fd57155d9b8 to your computer and use it in GitHub Desktop.
Javascript — Get Window Size
// http://ryanve.com/lab/dimensions/
document.documentElement.clientWidth
window.innerWidth
window.outerWidth
window.screen.width
window.screen.availWidth
$(document).width() 1552
document.body.clientWidth 1080
document.body.offsetWidth 1080
document.body.scrollWidth 1080
document.documentElement.clientWidth 1552
document.documentElement.offsetWidth 1552
document.documentElement.scrollWidth
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment