Se supone que deberia cambiar el color de un texto. esto va en head:
Código:
<script language="JavaScript">
function initArray() {
this.length = initArray.arguments.length;
for (var i = 0; i < this.length; i++) {
this[I] = initArray.arguments;
}
}
var x = 0;
var color = new initArray("#FFFFFF", "#FF9933");
function chcolor(){
if (navigator.appVersion.indexOf("MSIE") != -1){
document.all.c.style.color = color[x];
}
(x <color.length-1) ? x++ : x = 0;
}
setInterval("chcolor()",500);
</script>
y esto dentro de body:
Código:
<font id="c">hola</font>
pq no funciona?