Reloading Divs in sequence.

Reloading Divs in sequence.

Hello! 

This is I guess more of a theory question than an actual code question. I created an internal application which shows a large list of tasks that will be completed on a server by a script. It will go through each in order and update a database with its status (E.x "Failed", "Good", "Errors: <msg>"). 

What I am doing currently is pulling the ID's of these tasks from a database, and then passing them to JQ to .load() the actual content for each div. 

What I would like to do is figure out a way to have each div reload as something is happening to it. So, lets say the script fires on the server and begins to process task ID 1. I would like to figure out a good way to be able to instantiate reloading for each div, as it is being processed. Any neat ideas that anyone might have would be appreciated. I do not wish to reload the entire page, I would not like for all 200+ divs to be constantly refreshing. Forgive me if this has been covered before, I tried searching but I wasn't even sure what to search for :)

Thanks!