I\'m familiar enough with Ajax and JSON that I can send a request and get a parse a JSON request. Ideally I\'d like to receive multiple response to periodically update a pro
Try looking into the library "comet." It's implements what's known as "reverse AJAX." It'll allow you to send events from the server to the client easily.
The polling suggestion made just before mine, is also perfectly valid.