Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/07/2005, 16:59
Avatar de SiR.CARAJ0DIDA
SiR.CARAJ0DIDA
 
Fecha de Ingreso: junio-2004
Ubicación: Acá
Mensajes: 1.166
Antigüedad: 20 años, 8 meses
Puntos: 4
function validar()
{
if (/^[0-9]{5}$/i.test(document.getElementById('valor').value))
{
alert('incorrecto')
}
}
<input type="text" id="valor" name="valor">