For example I want to find all elements that have computed style position: fixed;. How to do it without making much load on the CPU ?

Is iterating every getElementsByTagName('*') and then doing for loop the only way ?

link|improve this question

80% accept rate
3  
No, you can also traverse the tree recursively. Which of those ways is more CPU intensive can be found out by profiling the code. – Felix Kling Jan 1 at 0:35
Looks similar to this jQuery-specific question: jQuery: check if element has CSS attribute – thisgeek Jan 6 at 16:11
Which browsers have to be supported? – Rob W Jan 7 at 10:50
The newest ones, Firefox, Opera, Chrome, for IE I do not care. – rsk82 Jan 7 at 15:17
feedback

2 Answers

Instead of selecting all (*) elements, and use getComputedStyle + getPropertyValue, you can follow the following steps:

  • Loop through all CSS rules (via document.styleSheets [1]) and take the selectors which contains position: fixed.
  • Select all elements whose style attributecontainsposition: fixed`.
  • Use document.querySelectorAll to select all elements which match the selector.

    • Test whether window.getComputedStyle(elem, null).getPropertyValue('position') equals fixed to filter elements which are not at a fixed position (possibly overridden through a more specific selector, or !important).
    • If it matches, push the element in an array
  • At this point, you have an array containing all position: fixed elements.

[1] The external stylesheets have to be located at the same origin, because of the Same origin policy.

Code (small demo: http://jsfiddle.net/GtXpw/):

//[style*=..] = attribute selector
var possibilities = ['[style*="position:fixed"],[style*="position: fixed"]'],
    searchFor = /\bposition:\s*fixed;/,
    cssProp = 'position',
    cssValue = 'fixed',
    styles = document.styleSheets,
    i, j, l, rules, rule, elem, res = [];

for (i=0; i<styles.length; i++) {
    rules = styles[i].cssRules;
    l = rules.length;
    for (j=0; j<l; j++) {
        rule = rules[j];
        if (searchFor.test(rule.cssText)) {
            possibilities.push(rule.selectorText);
        }
    }
}
possibilities = possibilities.join(',');
possibilities = document.querySelectorAll(possibilities);
l = possibilities.length;
for (i=0; i<l; i++) {
   elem = possibilities[i];
   // Test whether the element is really position:fixed
   if (window.getComputedStyle(elem, null).getPropertyValue(cssProp) === cssValue) {
       res.push(elem);
   }
}
res; //<-- = Array containing all position:fixed elements
link|improve this answer
feedback

Your best bet is using DOM traversal, because in most browsers that's done in parallel, so you'll be using the user's cores to their best.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.