cs_keypress

cs_keypress

by bryiantan

JavaScript

$( "body" ).on( "keydown", function( event ) {
	if (event.which == 49 || event.which == 97) {
  		alert('do your magic here');
  }
});