Skip to content

Instantly share code, notes, and snippets.

@alexmagereanu
Created September 29, 2013 14:37
Show Gist options
  • Select an option

  • Save alexmagereanu/6753052 to your computer and use it in GitHub Desktop.

Select an option

Save alexmagereanu/6753052 to your computer and use it in GitHub Desktop.
jquery wire enter key
//wire enter key
//$('#message').bind('enterKey', function(e) {
// alert('enter');
//});
$('#message').keyup(function(e) {
if (e.keyCode == 13) {
$('#sendMessage').trigger('click');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment