this.fn.width = function(outer) {
      var el = this instanceof HTMLElement ? this : this[0];
      var computedStyle = window.getComputedStyle(el);
      var value = el.offsetWidth;
      if(computedStyle) {