I'm trying to create a "live" HTML page that updates based upon dynamic data sources. The data source could be individual files, or could be entries in a database.
My thought is to create a <div>
(animated to pop on the screen via jQueryUI) for each data source as it comes online, with its data updating periodically. Then, when the the timestamped data becomes stale, remove the div.
I have some ideas, but want to hear different implementation strategies suggestions on the best way to handle this.
Thanks!