Using javascript, how do I get all DOM elements that start with a certain prefix like <prefix:suffix>
Code example:
<div>
<foo:bar1>hello</foo:bar1>
</div>
<foo:bar2>world</foo:bar2>
But, without looping through ALL elements (for performance reasons)?
Thanks, Ran