Ver Mensaje Individual
  #2 (permalink)  
Antiguo 25/03/2004, 06:46
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 11 meses
Puntos: 772
Hola, axelbeny. Bienvenido al Foro.

Por si acaso los genios andan algo ocupados, te voy a contestar yo
Código PHP:
<html>
<
head>
<
script>
function 
elimina(sel,sel2) {
    
txt=sel.options[sel.selectedIndex].text;
    
obj=document.getElementById(sel2);
    for(
i=0;i<obj.options.length;i++) {
        
txt2=obj.options[i].text;
        if(
txt2==txt) {
            
obj.options[i]=null;
            if(
sel2=='dos')
                
elimina(sel,'tres');
            return;
        }
    }
}
</script>
</head>

<body>
<select onchange="elimina(this,'dos')">
<option>Español</option>
<option>Francés</option>
<option>Guanche</option>
</select>
<select id="dos" onchange="elimina(this,'tres')">
<option>Español</option>
<option>Francés</option>
<option>Guanche</option>
</select>
<select id="tres">
<option>Español</option>
<option>Francés</option>
<option>Guanche</option>
</select>
</body>
</html> 
Espero que te sirva. Saludos,