I want to write something like this in javascript:

var all_headings = document.getElementsByTagName("h1,h2,h3,h4,h5,h6");

all_headings would then be a list of all elements that are h1 or h2 or h3... And in the order that they appear in the document, of course.

How do I do it?

link|improve this question

58% accept rate
2  
can you use jquery? – Daniel A. White Aug 15 '11 at 13:36
you can allways do a separate getElementsByTagName and merge the arrays – Emil Aug 15 '11 at 13:38
@Emil: But you won't be able to get the order right. – Felix Kling Aug 15 '11 at 13:40
@Emil - no you can't it won't preserve order. – Daniel A. White Aug 15 '11 at 13:40
Ha, missed that in the post. My bad! ^^ – Emil Aug 15 '11 at 13:41
show 1 more comment
feedback

5 Answers

With modern browsers you can do

document.querySelectorAll("h1, h2, h3, h4, h5, h6")

Or you could get cross-browser compatibility by using jQuery:

$("h1, h2, h3, h4, h5, h6")
link|improve this answer
querySelectorAll doesn't return a live list like getElementsByTagName. Does the jquery version return a live list? – Eyal Aug 17 '11 at 14:53
What's a live list? – Xeon06 Aug 17 '11 at 14:57
A live list is a series of pointers into the document that you can modify. For example, each element of the output of querySelectorAll() has .parent = null. Compare with getElementsByTagName where the elements have .parent set. – Eyal Aug 22 '11 at 12:22
Oh. Then yes, with jQuery you get the elements with all their document properties and positions set correctly. – Xeon06 Aug 22 '11 at 13:30
feedback

You dont need jQuery for something simple; try his:

var tags = [ "h1","h2","h3" ];
var all_headings = [];

for(var i = 0; i < tags.length; i++)
    all_headings = all_headings.concat(document.getElementsByTagName(tags[i]));
link|improve this answer
It seems like this would not get them in the right order. – Eyal Aug 15 '11 at 13:54
You're creating an Array that holds 3 NodeLists. Might as well just use .push() instead of .concat(). – user113716 Aug 15 '11 at 14:00
Doesnt concat merge the result of getElementsByTagName into all_headings? I havent really tested it. – TJHeuvel Aug 15 '11 at 14:21
@TJHeuvel: Unfortunately, no. You could do something like this in your for statement, but it still won't maintain the order in the document as required in the question, and it won't work in IE8 and lower. all_headings.push.apply(all_headings, all_headings.slice.call(document.getElementsByTagName(tags[i]))); – user113716 Aug 15 '11 at 16:52
feedback

I qwould use jQuery to handle this. it makes selecting elements very simple.

see this for more: http://api.jquery.com/element-selector/

link|improve this answer
feedback

Give them a common class name then use getElementsByClassName

link|improve this answer
getElementsByClassName is not available in IE (I think only IE9 has it). – Felix Kling Aug 15 '11 at 13:41
Not a good solution for a userscript or Chrome extension. – Eyal Aug 15 '11 at 13:54
feedback

If you're just needing some cross-browser DOM selection, there's no need to load jQuery.

Just load Sizzle instead. It's the selector engine that jQuery uses.

Example: http://jsfiddle.net/77bMG/

var headings = Sizzle('h1,h2,h3');

for( var i = 0; i < headings.length; i++ ) {
    document.write('<br>');
    document.write(i + ' is ' + headings[i].innerHTML);
}

Or without any library code, you can walk the DOM, and push the headings into an Array.

Example: http://jsfiddle.net/77bMG/1/

var headings = [];

var tag_names = {
    h1:1,
    h2:1,
    h3:1,
    h4:1,
    h5:1,
    h6:1
};

function walk( root ) {
    if( root.nodeType === 1 && root.nodeName !== 'script' ) {
        if( tag_names.hasOwnProperty(root.nodeName.toLowerCase()) ) {
            headings.push( root );
        } else {
            for( var i = 0; i < root.childNodes.length; i++ ) {
                walk( root.childNodes[i] );
            }
        }
    }
}

walk( document.body );

for( var i = 0; i < headings.length; i++ ) {
    document.write('<br>');
    document.write(i + ' is ' + headings[i].innerHTML);
}
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.