Object.prototype.getStyleProperty = function (prop) { return (window.getComputedStyle(this, null)[prop] || this.currentStyle[prop]) }; alert(document.body.getStyleProperty('font')); // => normal normal 400 13px/normal Verdana