I want to animate a series of elements in jquery 1.3, with each next element starting halfway through the first animation. In other words, I want the effect of half a line. I tried using the code below, but it does not work. Does anyone have any idea?
$("h3").click(function(){ $(".projectItem").each(function (i) { if (i > 0){ setTimeout ("", 500); } $(this).animate({"opacity": 0, "duration": 1000}); }); });
PS: I tried to use various "unoccupied" or "pause" jquery plugins, but I suspect that the methods used were pre jquery 1.3?
PPS: Thanks in advance for your help :)
jquery jquery-animate queue sequence
Matrym
source share