setInterval(function() { $.getJSON('/list', function (data) { //console.log(data); $( "#konfis" ).html(''); $.each( data, function( i, item ) { $( "#konfis" ).append(' ' + item.Name + ' ' + item.Gemeinde + ' ' + item.KCoins + ''); }); }); }, 1000); /* var loc = window.location; var uri = 'ws:'; if (loc.protocol === 'https:') { uri = 'wss:'; } uri += '//' + loc.host; uri += loc.pathname + 'ws'; ws = new WebSocket(uri) ws.onopen = function() { console.log('Connected'); ws.send('get'); }; ws.onmessage = function(evt) { console.log(evt.data); };*/