var url = 'https://api.softsgs.net/livecounter/proform/4/4';
var firstValue = true;
var es = new EventSource(url);
es.addEventListener('message', function (e) {
$('#views').text(e.data);
if (firstValue) {
firstValue = false;
// after receiving initial value, increment counter
$.post(url, function () {});
} else {
// highlight animation for updates after initial value
$('#views-area').effect('highlight', {}, 1000);
}
}, false);