Ver Mensaje Individual
  #2 (permalink)  
Antiguo 02/07/2013, 13:49
ocp001a
Colaborador
 
Fecha de Ingreso: mayo-2008
Ubicación: $MX['VZ']['Xalapa']
Mensajes: 3.005
Antigüedad: 16 años, 7 meses
Puntos: 528
Respuesta: Como en evitar que tres select tengan datos iguales

¿no te sería mejor un select múltiple?

Con respecto a si son iguales:

Código Javascript:
Ver original
  1. if(document.getElementById('select1').value==document.getElementById('select2').value || document.getElementById('select1').value==document.getElementById('select3').value || document.getElementById('select2').value==document.getElementById('select3').value){
  2.     alert('Debe elegir distintas opciones');
  3.     return false;
  4. }