Created
March 9, 2016 08:01
-
-
Save netsi1964/4ff529cde014fc60d9d3 to your computer and use it in GitHub Desktop.
Add send on enter to chat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(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