Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Created September 7, 2022 06:29
Show Gist options
  • Save percybolmer/dd2f7689d260b63b9e77f084c6a4782b to your computer and use it in GitHub Desktop.
Save percybolmer/dd2f7689d260b63b9e77f084c6a4782b to your computer and use it in GitHub Desktop.
/**
* sendMessage will send a new message onto the Websocket
* */
function sendMessage() {
var newmessage = document.getElementById("message");
if (newmessage != null) {
conn.send(newmessage.value);
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment