I am using slideDown animation to show some divs in a newly added row in a table:
$("div", newRow).slideDown(10000, UpdateHours(response.d.Hours));
however, the UpdateHours () function is called long before the div animation finishes. This causes me a problem because the updated clocks are then covered with sliding divs.
I made the slide very slow in order to better illustrate the problem.
source
share