Someone report this issue on github: dead keys on MacOS, In my code I use keypress event to insert characters (and keydown for shortcuts) using:
$(document.documentElement || window).bind('keypress.cmd', function(e) {
...
self.insert(String.fromCharCode(e.which));
...
});
anybody have experience in fixing this in an app using jQuery? it seems that on that keyboard only keydown is fired but not keypress.
Is this the only solution: How can I eliminate dead keys on Mac OS X with international keyboard?