Good
Ajax on a specific scenario drags new data, update, all the rules. I decided to try to do with effects
array.forEach(function(item, i, array){ var event_id = i; var event_va = item; $("#event_" + event_id).slideUp().delay(300).html(event_va).fadeIn(500); }); roughly speaking, we go through a cycle of divas, they have the values + effect replaced. But it turns out a strange thing, the effects are applied to all elements at once.
The question is simple, how to optimize the design, so that first the appearance / disappearance effect is on the first element, after the effect is completely fulfilled on the second, etc. ?