05/05/2010, 00:48
|
| | Fecha de Ingreso: marzo-2010
Mensajes: 37
Antigüedad: 14 años, 8 meses Puntos: 1 | |
Respuesta: JQuery Validate y campos alfanumericos <input type="text" name="nick" onblur="testear_nick(this.value)">
<script>
function testear_nick(nick)
if(/[^a-zA-Z0-9]/.test(nick)){ // solo numeros letras espacios
alert("es incorrecto!");
else{alert("es correcto");}
}
</script>
saludos |