Ver Mensaje Individual
  #3 (permalink)  
Antiguo 09/06/2007, 02:43
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 10 meses
Puntos: 772
Re: No permitir ingreso de comillas ...

Hola Chuty

Prueba esto:

Código:
<html>
<head>
<script type="text/javascript">
function validar(e) {
    tecla = (document.all) ? e.keyCode : e.which;
    patron =/[\x5C'"]/;
    te = String.fromCharCode(tecla);
    return !patron.test(te);
} 
</script>
</head>

<body>
<input type="text" onkeypress="return validar(event)" />
</body>
</html>
Saludos,