Skip to content

Instantly share code, notes, and snippets.

@netsi1964
Created March 9, 2016 08:01
Show Gist options
  • Select an option

  • Save netsi1964/4ff529cde014fc60d9d3 to your computer and use it in GitHub Desktop.

Select an option

Save netsi1964/4ff529cde014fc60d9d3 to your computer and use it in GitHub Desktop.
Add send on enter to chat
$(function() {
var eleMessage = document.querySelector("#message"),
eleSendButton = document.querySelector("#sendButton");
eleMessage.addEventListener('keyup', function(evt) {
if (evt.which === 13) {
eleSendButton.click();
}
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment