I have this …
$(document).keypress(function(e) { if ( e.keyCode === 119 ) // w doSomething(); });
Wo when pressing \"w\
The easiest and perfect solution is:
$(document).keypress(function(e) { if (e.which == 119 && !$(':focus').length) { doSomething(); } });