Search code examples
javascriptcssmootools

Determine whether element has fixed or percentage width using JavaScript


Using Mootools Element.Dimensions I can get the computed size, in pixels, of any element. However, I can find no way of telling whether an element has been sized using pixel or percentage values (other than in the special case of its having an inline style).

Is there a sensible way of doing this? The only solution I can think of (which is so hideous that it barely deserves the name) is to walk through the document stylesheets, looking for selectors that match the target element and then looking through the declared styles for the target propety.

Background

I'm attempting to replace all textareas of a certain class with CKEditor instances. Ideally, textareas with 100% width would be replaced by similarly styled editor instances - so they would scale on window resize - while fixed size textareas would be replaced by fixed sized editors.

Yes, I could just give them a different class (which I will do if there's no nice solution), but ideally I'd like to be able to drop in my CKEditor script and have everything just work without having to tweak the HTML.


Solution

  • It can be done. Looking at this question (Why does getComputedStyle return 'auto' for pixels values right after element creation?) gives us the hint.

    If you set the element's style to display = none and then call getComputedStyle you will get the calculated value (percentage width or 'auto' or whatever the stylesheets apply to the element) instead of the pixel width.

    Working code jsfiddle https://jsfiddle.net/wtxayrnm/1/

    function getComputedCSSValue(ele, prop) {
      var resolvedVal = window.getComputedStyle(ele)[prop];
      //does this return a pixel based value?
      if (/px/.test(resolvedVal)) {
        var origDisplay = ele.style.display;
        ele.style.display = 'none';
        var computedVal = window.getComputedStyle(ele)[prop];
        //restore original display
        ele.style.display = origDisplay;
        return computedVal;
      } else {
        return resolvedVal;
      }
    }
    

    It should be noted that this will cause the layout to be re-rendered but, depending on your situation, it's probably a simpler solution than traversing all the stylesheet rules or cloning the element (which can cause some cascading rules to not be applied).