Cita:
Iniciado por Dany_s bueno tenes que comprobar si tiene pulsada el ctrl o el alt
para el ctrl = e.ctrlKey que devuelve un booleano
para el alt = e.altKey también un booleano
Código HTML:
Ver original$( function (){
$(document).keydown(function(e){
if (e.ctrlKey){
alert("control");
}
if (e.altKey){
alert("alt");
}
});
});
o usa este plugin
http://plugins.jquery.com/project/hotkeys El problema al cual me refería lo solucioné así, comentando esas lineas :)
Código Javascript
:
Ver original$(document).ready(function(){
$("html").keypress(function(e){
//e.preventDefault();
//$("#tecla-pulsada").html(e.which + ": " + String.fromCharCode(e.which))
if (String.fromCharCode(e.which)=='m'){
$("#mostrar").show("slow");
}else{
$("#mostrar").hide("slow")
}
});
})