Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

JavaScript's getElementById is ok to use, I know that. But how about getElementsByClassName? How is the browser support for that?

Through Google I've found various homemade solutions for it, like this

As you can see, this post is four years old now, that's why I am asking. Or should I just use jQuery for stuff like that if it's available?

share|improve this question

3 Answers

up vote 1 down vote accepted

First off, you have to identify exactly which version of IE you need to support: IE6, IE7, IE8? We can't really provide the best set of options without knowing that. If all you need is IE9 and above (IE8 too in some modes), then you can use document.querySelectorAll(".classname") or document.getElementsByClassName("classname").

If you need other versions of IE, you can't go that route. There are shims for getElementsByClassName() that are less than 30 lines of code that can be used to provide support for it in older versions of IE, but at that point, I'd strongly suggest you just get a selector library that does ALL the cross browser support for you. It sounds like you are already familiar with jQuery which has such a library. If you don't want/need the rest of jQuery, you can get just a selector library. jQuery uses Sizzle internally which is available all by itself and is quite good. There are also others.

Here's a good resource so you can look up browser compatibility on your own: http://caniuse.com/getelementsbyclassname.

share|improve this answer

Just use document.querySelectorAll(".classname")

IE 8 supports it: http://www.caniuse.com/#search=queryselectorall


I wrote a shim:

if (typeof document.getElementsByClassName !== 'function') {
    HTMLElement.prototype.getElementsByClassName = function (classname) {
        return this.querySelectorAll('.' + classname);
    };
}

http://jsfiddle.net/P3P5e/1/

(Tested and working [if it were needed] in Chrome 21 and Opera 12.50, but not in Firefox 14. I cannot tell if it works in IE, as I don't have IE.)

share|improve this answer
+1 - document.querySelectorAll(".classname") is supported in more browsers than document.getElementsByClassName("classname") – Kolink Jul 15 '12 at 23:57
IE 8 doesn't support qSA in quirks mode, so it may be ok where you know the page is in standards mode, but not otherwise. In any case, it should be feature tested. – RobG Jul 16 '12 at 0:01

It is not supported by IE 8.​​​​​​

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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