Created
June 28, 2018 12:18
-
-
Save w-jerome/e3ea884a07b95352fb025fd57155d9b8 to your computer and use it in GitHub Desktop.
Javascript — Get Window Size
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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