Skip to content

Instantly share code, notes, and snippets.

@kkworden
kkworden / script.js
Created December 13, 2018 18:08
Fixes the chatroom
function getChatroom() {
$.post('/api', { query: '{ messages }' }, function(data) {
var str = '';
for (var message of data.data.messages) {
str += `${message}<br />`;
}
$('#messages').html(str);
});
}