Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/03/2002, 04:50
3dboy
 
Fecha de Ingreso: diciembre-2001
Mensajes: 77
Antigüedad: 22 años, 11 meses
Puntos: 0
este script no me funciona , ¿pq?

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?