Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/07/2007, 18:36
wigglyUtrera
 
Fecha de Ingreso: enero-2007
Mensajes: 405
Antigüedad: 17 años, 10 meses
Puntos: 3
Funciona en Firefox, pero no en IE

no encuentro el fallo por el que no funciona en IE.

Código PHP:
function tratarErrores(){
    
listas document.getElementsByTagName('select');
    
errores = new Array(6);
    
id = new Array(6);
    
tipos = ['tipo1','tipo2','tipo3','tipo4','tipo5','tipo6'];
    
id_general = ['Tipos1','Tipos2','Tipos3','Tipos4','Tipos5','Tipos6'];
    
divErrores document.getElementById("errores");
    for(
i=0;i<listas.length;i++){
        
indice listas[i].selectedIndex;
        
errores[i] = listas[i].options[indice].text;
        
id[i] = "label_"+id_general[i];
    }
    var 
numErrores 0;
    for(var 
i in errores){
        if(
errores[i] == "Elige..."){
        
document.getElementById(id[i]).style.color 'red';
                    ++
numErrores;
        }
        else
        
document.getElementById(id[i]).style.color '';
    } 
    if(
numErrores == 0)
     return 
true;
    else
                 return 
false;


alguna ayuda?

Saludos

Última edición por wigglyUtrera; 25/07/2007 a las 19:27