$(document).ready(function() {
$(document).keyup(function(e) {
alert('This key: ' + e.keyCode);
});
});
If an individual key is mapped to multiple characters, then the keyup event will execute multiple times for one key press.
Does anyone know how to identify just the physical act of pressing the key in this instance?
Cheers