asda

","data":0},{"label":"1","data":0}]; $.plot('#placeholder', data, { series: { pie: { show: true, radius: 11/16, innerRadius: 0.3 } }, legend: { show: false } }); var total = 0; $("#voteCount").html(total+" Votes").fadeIn(); updateWithSockets(); //.fadeIn(); } function updateWithSockets() { socket.on("aa90fdbb0ca448d7dddeb8a67b00719d", function(payload) { console.log(payload); var plObj = JSON.parse(payload); var data = plObj.voteData; var total = plObj.total; $.plot('#placeholder', data, { series: { pie: { show: true, radius: 11/16, innerRadius: 0.3 } }, legend: { show: false } }); // end of plot console.log(' '); console.log('votes '); console.log(total); console.log(' '); $("#voteCount").html(total+" Votes").fadeIn(); }); // end of socket } }); // update plot with websockets