Skip to content

Instantly share code, notes, and snippets.

@iksi
Created April 21, 2016 10:17
Show Gist options
  • Save iksi/84df16193408eeeec58c9dc7426163d1 to your computer and use it in GitHub Desktop.
Save iksi/84df16193408eeeec58c9dc7426163d1 to your computer and use it in GitHub Desktop.
var getDocumentDimensions = function () {
return {
width: Math.max(
document.body.scrollWidth, document.documentElement.scrollWidth,
document.body.offsetWidth, document.documentElement.offsetWidth,
document.body.clientWidth, document.documentElement.clientWidth
),
height: Math.max(
document.body.scrollHeight, document.documentElement.scrollHeight,
document.body.offsetHeight, document.documentElement.offsetHeight,
document.body.clientHeight, document.documentElement.clientHeight
)
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment