Hola
Bellenger
Con este código podrás detectar
ctrl y
alt en Firefox y en IE:
Código:
<script type="text/javascript">
function pulsar(e) {
if (e.ctrlKey) alert('Control')
else if (e.altKey) alert('Alt');
}
</script>
</head>
<body onkeydown="pulsar(event)">
Saludos,