Skip to content

Instantly share code, notes, and snippets.

@astrotars
Created February 26, 2020 16:00
Show Gist options
  • Select an option

  • Save astrotars/56fb536ca4f3ddb55b9e41fffd000628 to your computer and use it in GitHub Desktop.

Select an option

Save astrotars/56fb536ca4f3ddb55b9e41fffd000628 to your computer and use it in GitHub Desktop.
const inputElement = document.getElementById('message-input');
inputElement.addEventListener('keyup', function(event) {
if (event.key === 'Enter') {
sendMessage(inputElement.value);
inputElement.value = '';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment