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.

the following code gives me an error message in internet explorer 6 "Object does not support this method"

var borderTds = document.getElementsByClassName('leftborder');

How can I select elements by their class in IE6?

I prefer not to use JQuery

share|improve this question
possible duplicate of getElementsByClassName & IE – Felix Kling Jul 5 '11 at 14:52
1  
I think jQuery supports such functionality. – ChaosPandion Jul 5 '11 at 14:52
An alternative to using jQuery would be to just use the Sizzle selector engine. But if all you need is to select by class, then I'd just write a replacement. – user113716 Jul 5 '11 at 14:55
2  
@ChaosPandion: "I prefer not to use JQuery". – Felix Kling Jul 5 '11 at 14:55
@Felix Kling - </sarcasm> – ChaosPandion Jul 5 '11 at 14:57

4 Answers

up vote 2 down vote accepted

This solution may help. This is the getElementsByClassName function implemented in pure javascript, that works in IE.

share|improve this answer

IE6, Netscape 6+, Firefox, and Opera 7+ copy the following script in your page:

document.getElementsByClassName = function(cl) {
  var retnode = [];
  var elem = this.getElementsByTagName('*');
  for (var i = 0; i < elem.length; i++) {
    if((' ' + elem[i].className + ' ').indexOf(' ' + cl + ' ') > -1) retnode.push(elem[i]);
  }
  return retnode;
}; 
share|improve this answer
3  
Actually, using \b can lead to problems with classes containing -. Better add spaces: if((' ' + elem[i].className + ' ').indexOf(' ' + cl + ' ') > -1).... That's the method jQuery uses. – Felix Kling Jul 5 '11 at 14:55
@felix: changed the code as you suggested – peer Jul 5 '11 at 15:04

That method doesn't exist in IE until version 9. You're going to have to write your own implementation or use a library (like jquery -sorry).

share|improve this answer

The method doesn't exist in IE6. If you want to select elements by class and don't want to use a library, you simply have to loop through all elements in the page and check for the class in their className property.

function getElementsByClassName(className) {
  var found = [];
  var elements = document.getElementsByTagName("*");
  for (var i = 0; i < elements.length; i++) {
    var names = elements[i].className.split(' ');
    for (var j = 0; j < names.length; j++) {
      if (names[j] == className) found.push(elements[i]);
    }
  }
  return found;
}

Demo: http://jsfiddle.net/kYdex/1/

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.