Skip to content

Instantly share code, notes, and snippets.

@codeallday31
Created July 17, 2023 08:40
Show Gist options
  • Save codeallday31/04b0f215040663f0e09cac66942b0879 to your computer and use it in GitHub Desktop.
Save codeallday31/04b0f215040663f0e09cac66942b0879 to your computer and use it in GitHub Desktop.
function elementGetStyle(element, style) {
var value = element.style[style];
if (!value) {
if (document.defaultView && document.defaultView.getComputedStyle) {
var css = document.defaultView.getComputedStyle(element, null);
value = css ? css.getPropertyValue(style) : null;
} else if (element.currentStyle) {
value = element.currentStyle[style];
}
}
return value == 'auto' ? null : value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment