Skip to content

Instantly share code, notes, and snippets.

@allenhwkim
Created April 3, 2016 15:43
Show Gist options
  • Save allenhwkim/86f498bef85e65f36189e00c746d4167 to your computer and use it in GitHub Desktop.
Save allenhwkim/86f498bef85e65f36189e00c746d4167 to your computer and use it in GitHub Desktop.
Get real width and height using getComputedStyle
// ref. https://developer.mozilla.org/en-US/docs/Web/API/Window/getComputedStyle
function getStyle(elem, prop) {
var styles = window.getComputedStyle(elem, null);
var value = styles.getPropertyValue(prop);
if (!value) {
throw "Could not get style for " + prop;
}
return value
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment