Skip to content

Instantly share code, notes, and snippets.

@iksi
Last active July 13, 2016 21:14
Show Gist options
  • Save iksi/25fadb9ff1721a9d475ef613f294eeba to your computer and use it in GitHub Desktop.
Save iksi/25fadb9ff1721a9d475ef613f294eeba to your computer and use it in GitHub Desktop.
var getElementDimensions = function (element) {
return {
width: Math.max(element.scrollWidth, element.offsetWidth, element.clientWidth),
height: Math.max(element.scrollHeight, element.offsetHeight, element.clientHeight)
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment