Skip to content

Instantly share code, notes, and snippets.

@samuelteixeiras
Created March 23, 2022 23:09
Show Gist options
  • Save samuelteixeiras/791a325881ef3c8dd1bcd032edf5b9cb to your computer and use it in GitHub Desktop.
Save samuelteixeiras/791a325881ef3c8dd1bcd032edf5b9cb to your computer and use it in GitHub Desktop.
listener function
socket.on('chat message', function(msg){
$('#messages').append(msg);
window.scrollTo(0, document.body.scrollHeight);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment