Okay, so I have a bunch of divs with different combinations of classes in each (eg "a A", "a b", "b A", "b" etc...). With a press of a button, I need to change the styles of, for example, all elements which have the class A (not only 'A', but must include it. Eg both "d A" and "A" would work)
I have tried
document.getElementsByClassName('a A').style.background = "#f00";
but it didn't work :P The console says that it can't set a style for element 'undefined', so I guess it doesn't get what I need with getElementsByClassName(); It feels like the solution is very obvious and simple, but I'm yet to find it. It's be great if you helped me!
Thanks :)
$('.A,.a').css('background', '#f00');– Clive Oct 12 '11 at 17:14