Skip to content

Instantly share code, notes, and snippets.

@ahvonenj
Last active December 20, 2015 18:44
Show Gist options
  • Save ahvonenj/d1352eb4defbca2c73b7 to your computer and use it in GitHub Desktop.
Save ahvonenj/d1352eb4defbca2c73b7 to your computer and use it in GitHub Desktop.
JavaScript keypress / keycode
$(document).on('keypress', function(e)
{
// Evaluate keycode into a lowercase human-readable letter
var key = String.fromCharCode(e.charCode).toLowerCase();
// Figure what to do with each key
switch(key)
{
case 'a':
console.log('a pressed');
break;
default:
break;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment