While I was playing with jQuery / JavaScript, I ran into this problem. I could write down the keys Altand Ctrl, but NOT Deland, of course, not all of them together.
$(document).ready(function() {
$("#target").keydown(function(event) {
if (event.ctrlKey && event.altKey && event.keyCode == '46') {
alter("Ctrl-Alt-Del combination");
}
});
});
Is it possible to capture all these three keys together?
user201788
source
share