Skip to content

Instantly share code, notes, and snippets.

@solexious
Created January 23, 2016 23:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save solexious/5f1f3b29aa3fe51ca3d8 to your computer and use it in GitHub Desktop.
Save solexious/5f1f3b29aa3fe51ca3d8 to your computer and use it in GitHub Desktop.
socket.on('chat message', function(msg){
if ($('#' + msg.mac).length){
}
else{
$('#messages').append($('<li id="' + msg.mac + '">').text(msg.mac));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment