Skip to content

Instantly share code, notes, and snippets.

@ethertank
Created January 17, 2012 09:29
Show Gist options
  • Save ethertank/1625854 to your computer and use it in GitHub Desktop.
Save ethertank/1625854 to your computer and use it in GitHub Desktop.
getComputedStyle(function)
if(typeof getComputedStyle === "undefined") {
var getComputedStyle = function(targetElm){
return document.defaultView.getComputedStyle(targetElm, "") || targetElm.currentStyle;
};
}
※ネイティブの getComputedStyle は擬似要素の指定も可能だが、この関数では不可。
## usage ##
var bodyStyles = getComputedStyle(document.body);
console.log(bodyStyles["color"]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment