I am using slideDown animation to show some divs in a newly added table row:
$("div", newRow).slideDown(10000, UpdateHours(response.d.Hours));
however the UpdateHours() function is called long before the divs are finished animating. This is causing me a problem because the Updated Hours then get covered by the sliding divs.
I made the slide very slow to illustrate the issue better.