Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/08/2004, 01:17
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 3 meses
Puntos: 772
Hola beandfa.

Prueba este código:
Código HTML:
<html>
<head>
<script>
function pulsar(e) {
    tecla=(document.all) ? e.keyCode : e.which; 
    if (tecla==66 && e.ctrlKey) 
        alert('hola'); 
}
</script>
</head>
<body onkeydown="return pulsar(event)">
</body>
</html> 
Saludos,