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.

I know "getElementsByClassName" is not supporte by IE8. Do you know what can I use instead? I am getting annoying by error "Object doesn't support this property or method". The HTML code is:

function sumar() {
var elems = document.getElementsByClassName('verdana14 toAdd');
var myLength = elems.length;
total = 0;
for (var i = 0; i < myLength; ++i) {
   if (elems[i].value!="") {
       total += parseInt(elems[i].value,10);
       }
    }

var promedio = total/myLength;
parseFloat(document.getElementById('promediocal').value = promedio.toFixed(2));
}

This the input text that calls the javascript function:

<input name='AE_EA_1_BIV_003_2' type='text' class='verdana14 toAdd' id='AE_EA_1_BIV_003_2' style='width:50px' onChange='sumar()'/>
<input name='AE_EA_1_BIV_003_3' type='text' class='verdana14 toAdd' id='AE_EA_1_BIV_003_3' style='width:50px' onChange='sumar()'/>
<input name='AE_EA_1_BIV_003_4' type='text' class='verdana14 toAdd' id='AE_EA_1_BIV_003_4' style='width:50px' onChange='sumar()'/>
share|improve this question
jQuery has a great CSS selector implementation (which includes class name searches): jquery.com – Tim Medora Mar 5 '12 at 15:15
I love jQuery too, and for something running IE8 it almost certainly wouldn't be prohibitive overhead, but for pure vanilla javascript querySelectorAll() is best answer, as long as namespaces are not in the picture. – Swanny May 2 at 5:28

5 Answers

Use document.querySelectorAll('.verdana14.toAdd').

share|improve this answer
1  
This would offer the simplest solution, but you should have querySelectorAll to get multiple elements. – squint Mar 5 '12 at 15:29
1  
Thanks, I've corrected my typo by replacing qs with qsA. – Marat Tanalin Mar 5 '12 at 15:40
I downloaded the jQuery and used document.querySelectorAll('.verdana14.toAdd'); – Jesus Ibarra Mar 7 '12 at 3:22
2  
If you use native browser method (document.querySelectorAll()), you don't need jQuery to use it, and vice versa. – Marat Tanalin Mar 7 '12 at 10:56

getElementsByClassName method is not supported by IE8.

You should use document.querySelectorAll('.classname') (works in IE8+) or a library that implements that functionality - like:

  • jQuery
  • Moo Tools
  • DOJO
  • YUI
  • Prototype

    ... Among others...


querySelectorAll support:

http://www.quirksmode.org/dom/w3c_core.html#t13

getElementsByClassName support:

http://www.quirksmode.org/dom/w3c_core.html#t11

share|improve this answer

You could write your own. Something like:

function GEBCN(cn){
    if(document.getElementsByClassName) // Returns NodeList here
        return document.getElementsByClassName(cn);

    cn = cn.replace(/ *$/, '');

    if(document.querySelectorAll) // Returns NodeList here
        return document.querySelectorAll((' ' + cn).replace(/ +/g, '.'));

    cn = cn.replace(/^ */, '');

    var classes = cn.split(/ +/), clength = classes.length;
    var els = document.getElementsByTagName('*'), elength = els.length;
    var results = [];
    var i, j, match;

    for(i = 0; i < elength; i++){
        match = true;
        for(j = clength; j--;)
            if(!RegExp(' ' + classes[j] + ' ').test(' ' + els[i].className + ' '))
                match = false;
        if(match)
            results.push(els[i]);
    }

    // Returns Array here
    return results;
}

Will work pretty well, but you could write a faster one if you want to. Then you can just change:

document.getElementsByClassName('verdana14 toAdd');

To:

GEBCN('verdana14 toAdd');
share|improve this answer
You need to change cn.replace(' ', '.') because it will only replace the first space. You'll need a global regex that will also consider adjacent spaces to be one. Same with your cn.split(/ /), it should be global, and test for adjacent spaces, and it should include other space characters, like tabs, so \s is probably better. – squint Mar 5 '12 at 15:35
@amnotiam Thanks yeah I got confused by PHP and forgot which one replaces all without the g modifier. I purposefully switched from \s to ` ` because I don't think the function will be called with tabs or newlines. I modified it to trim off trailing spaces as well. – Paulpro Mar 5 '12 at 15:40
Yeah, probably a safe bet about the tabs/new lines. – squint Mar 5 '12 at 15:45
@amnotiam Also there is no need for a g flag on cn.split. It wouldn't do anything because split finds all matches anyways. – Paulpro Mar 5 '12 at 15:45
Yes, you're right about the split. – squint Mar 5 '12 at 15:46

use jQuery, or filter the results from getElementsByTag

share|improve this answer

you may try using jquery as it have alternative class selector to get the elements by there class names. $(".testclass").each... it will give you required elements by class names

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.