On my current project I have a table containing rows of items. Each item has a hidden checkbox over which an animation is executed as shown:
$('.elemToShow').each(function(){
$(this).show('fast');
});
The problem is that as the list of items gets bigger, the function takes so much time to render that it simply "pops" on the screen after a while, instead of showing the animation as expected.
Is there any way to execute this function so that it animates regardless of the list size?