What\'s the easiest way to find the keycode for a specific key press?
Are there any good online tools that just capture any key event and show the code?
I wa
$(function () { $(document).keyup(function (e) { console.log(e.keyCode); }); });
Here's your online tool.