probá con esta, funciona en IE8+ y el resto de los browsers
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> /*<![CDATA[*/
.uno {
color: blue;
}
/*]]>*/
<script type="text/javascript"> //<![CDATA[
function procesarDivs(){
var losdivs = document.getElementsByTagName("div");
for (var i=0; i < losdivs.length; i++){
if (losdivs[i].getAttribute('class') == 'uno'){
losdivs[i].style.color ='red';
}
}
}
//]]>
Texto 1
Texto 2
Texto 3
Texto 4
Texto 5 (en un párrafo)
<button onclick="procesarDivs();">buscar divs con class uno y cambiar el color
</button>
Saludos