Hola
zyon
¿Te refieres a vocales acentuadas?
Código:
<html>
<head>
<script type="text/javascript">
function validar(e) {
tecla = (document.all) ? e.keyCode : e.which;
if (tecla==8) return true;
patron =/[ñáà]/; // Añade todos los caracteres no aceptados
te = String.fromCharCode(tecla);
return !patron.test(te);
}
</script>
</head>
<body>
<input type="text" onkeypress="return validar(event)" />
</body>
</html>
Saludos,