var accountInfo = {}; var eventStreamInfo = { from: "END" }; var roomInfo = []; var longpollEventStream = function() { var url = "http://localhost:8008/_matrix/client/api/v1/events?access_token=$token&from=$from"; url = url.replace("$token", accountInfo.access_token); url = url.replace("$from", eventStreamInfo.from); $.getJSON(url, function(data) { eventStreamInfo.from = data.end; var hasNewLatestMessage = false; for (var i=0; i"+roomList[i].room_id+"" + ""+roomList[i].latest_message+"" + ""; rows += row; } $("#rooms").append(rows); };