17/02/2007, 09:59
|
| | Fecha de Ingreso: noviembre-2005 Ubicación: Bolivia
Mensajes: 20
Antigüedad: 19 años, 2 meses Puntos: 0 | |
Re: Bloquear botones con javascript Buenas hasta el momento logre esto:
<html>
<head>
<!-- No ctrl en mozilla firefox-->
<script language="javascript">
function NoCtrl(e)
{
var tecla=new Number();
if(window.event) {
tecla = e.keyCode;
}
else if(e.which) {
tecla = e.which;
}
else {
return true;
}
if (tecla<900)
{
return false;
}
}
</script>
</head>
<body>
<input type="text" OnKeyPress="javascript:return NoCtrl(event);">
</body>
Esto bloquea absolutamente todas las teclas pero ya ire buscando mas :) un saludo |