Skip to content

Instantly share code, notes, and snippets.

@TLMcode
Created August 21, 2013 17:01
Show Gist options
  • Select an option

  • Save TLMcode/6297105 to your computer and use it in GitHub Desktop.

Select an option

Save TLMcode/6297105 to your computer and use it in GitHub Desktop.
rudimentary key events with ascii code conversion in jquery
$('body').keypress(function(event) {
alert("pressed "+" "+String.fromCharCode(event.which));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment