I\'m having a bit of a trouble trying to figure this out today, i want to make 5 items inside my DOM (which is listed under the same attribute element, $(\'.elements\')) fade in
You can add a callback
offical doc :
('#clickme').click(function() { $('#book').fadeOut('slow', function() { // Animation complete. }); });
and call the same function with i++ et $('.elements').eq(i)
http://jsfiddle.net/dFnNL/