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 ?
|
For example I want to find all elements that have computed style Is iterating every
| |||||||||||
feedback
|
|
Instead of selecting all (
Code (small demo: http://jsfiddle.net/GtXpw/):
| |||
|
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. | |||
|
feedback
|