Skip to content

Instantly share code, notes, and snippets.

@starzonmyarmz
Created January 3, 2012 15:07
Show Gist options
  • Save starzonmyarmz/1555275 to your computer and use it in GitHub Desktop.
Save starzonmyarmz/1555275 to your computer and use it in GitHub Desktop.
$('#chat_app_input').keypress(function(e) {
if (e.keyCode === 13) {
console.log('enter pressed');
}
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment