summaryrefslogtreecommitdiff
path: root/Year_3/Web/chat-socket-io/chat.js
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2022-07-26 15:41:36 +0200
committerSanto Cariotti <santo@dcariotti.me>2022-07-26 15:41:36 +0200
commitcf7e0630c77b8f0e9660e3e633e10ea3db116387 (patch)
tree17959c07604896b2db792598c4a82ec9d34c4281 /Year_3/Web/chat-socket-io/chat.js
parentd29b49fc89b608794a2ab9df84e745b864b93b2f (diff)
Usernames and exclude sender
Diffstat (limited to 'Year_3/Web/chat-socket-io/chat.js')
-rw-r--r--Year_3/Web/chat-socket-io/chat.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/Year_3/Web/chat-socket-io/chat.js b/Year_3/Web/chat-socket-io/chat.js
deleted file mode 100644
index 8aa1b4d..0000000
--- a/Year_3/Web/chat-socket-io/chat.js
+++ /dev/null
@@ -1,16 +0,0 @@
-var form = document.getElementById("form");
-var input = document.getElementById("input");
-
-form.addEventListener("submit", function(e) {
- e.preventDefault();
- if (input.value) {
- socket.emit("chat message", input.value);
- input.value = "";
- }
-});
-socket.on("chat message", (msg) => {
- var item = document.createElement("li");
- item.textContent = msg;
- messages.appendChild(item);
- window.scrollTo(0, document.body.scrollHeight);
-});