Skip to content

Instantly share code, notes, and snippets.

@sTiLL-iLL
Last active December 21, 2015 23:39
Show Gist options
  • Save sTiLL-iLL/6383734 to your computer and use it in GitHub Desktop.
Save sTiLL-iLL/6383734 to your computer and use it in GitHub Desktop.
// see what key was pressed
$(function() {
$(document).keypress(function(e){
switch(e.which){
// "ENTER"
case 13:
alert('enter pressed');
break;
// add other cases here...
(...)
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment