JS/JQuery library that allow to show dynamic table information
The开发者_如何学JAVAre are at least 2 ways to show and reload information in table: -to rebuild table each time when new data arrives; -to update table's cells if they changes, adding or deleting rows one by one if needed. I've used the first approach, but now I want to add some JQuery UI effects, but I don't think that adding a "slider" or "selectable" every 3 seconds to 100 rows is a good idea. Is there any libraries for this purpose?
the only animation that would work for me in this kind situation is a custom jQuery animation which would change the backgroundcolor, fading it to its 'to be' color. this way the attention gets drawn, but not too much to make people sick.
Edit: Since you cant .animate()
the background color you need to use this plugin: http://plugins.jquery.com/project/color
精彩评论