Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/02/2007, 01:58
Avatar de sirguy
sirguy
 
Fecha de Ingreso: septiembre-2006
Ubicación: Mallorca
Mensajes: 959
Antigüedad: 17 años, 7 meses
Puntos: 12
Re: Deshabilitar la tecla TAB

Existen scripts tipo este:

<script language="javascript">
function tecla()
{
var Navegador = (window.Event) ? 1 : 0
var codigo = Navegador ? evento.which : event.keyCode
alert(codigo);
if (codigo == 9)
{
alert('Tecla deshabilitada');
}
}


document.onkeydown=tecla;
</script>


Este javscript deshabilia la teclas y de paso te da el número de tela a deshabilitar. Para usar quita los alerts