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
|
the following code gives me an error message in internet explorer 6 "Object does not support this method"
How can I select elements by their class in IE6? I prefer not to use JQuery |
|||
|
This solution may help. This is the getElementsByClassName function implemented in pure javascript, that works in IE. |
|||
|
|
|
IE6, Netscape 6+, Firefox, and Opera 7+ copy the following script in your page:
|
|||||||
|
|
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). |
|||
|
|
|
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
|
||||
|
|
jQuerywould 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</sarcasm>– ChaosPandion Jul 5 '11 at 14:57