Ver Mensaje Individual
  #15 (permalink)  
Antiguo 28/09/2011, 14:06
Avatar de nolose
nolose
 
Fecha de Ingreso: diciembre-2007
Ubicación: España
Mensajes: 165
Antigüedad: 16 años, 4 meses
Puntos: 2
Respuesta: Problema con validacion Field

Ese post lo vi por ahi... pero en locualo tengo que poner archivos ¿no? :S:S
y por lo tanto debe de ser igual que lo que yo tengo:

Código Javascript:
Ver original
  1. for(m=0;m<archivos.length;m++)
  2.     {
  3.                 if(archivos[m].type== "file")
  4.                 {
  5.                       if(archivos[m].value.substring(archivos[m].value.length-3,archivos[m].value.length).toLowerCase() != "jpg")
  6.                       {
  7.                             alert("Debes insertar sólo archivos de tipo jpg");
  8.                        }
  9.             }  
  10.     }