Skip to content

Instantly share code, notes, and snippets.

@tevashov
Last active October 27, 2022 21:42
Show Gist options
  • Select an option

  • Save tevashov/5172458 to your computer and use it in GitHub Desktop.

Select an option

Save tevashov/5172458 to your computer and use it in GitHub Desktop.
Event if and which key was pressed #jQuery
$(function() {
$(document).keypress(function(e){
switch(e.which){
// "ENTER"
case 13:
alert('enter pressed');
break;
// "s"
case 115:
alert('s pressed');
break;
(...)
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment