There are two methods for updating the client based on server data - one is to make the client poll the server at intervals (jQuery will let you do this with something like
setInterval(function() { $.post('my_url_here', myCallbackFunction) }, 1000);
which is arguably the easiest solution, but it's not very friendly to the server in terms of traffic and it has a number of other drawbacks which probably aren't important to this question.
If you look into websockets, node.js etc you can achieve the same thing quite easily, but it's a bigger learning curve, and you also need a server where you can run the software.
Node is a good solution which allows transparent communication between client and server, and it comes with a couple of samples like the node demo chat room