I'm trying to trigger the function in 5ooo second again and again with first_pic variable that contains different integer. Every time this function runs it adds plus 1 to first_pic variable, apparently it won't work, please help.
function slide(){
var total_pic = $("#slide_show").children().length;
var first_pic = $("#slide_show li:first-child").css('z-index',total_pic).index()+1;
$("#slide_show li:nth-child("+first_pic+")").fadeOut(4000, function(){
first_pic = first_pic + 1;
});
setTimeout(slide, 5000);
};
slide();
variable adds 1 nicely, but setTimeout doesn't trigger function again
setTimeout()). Of course, you probably meant milliseconds as 5000 seconds (~1.3 hours) is a long time to wait for a browser event – Phil Aug 22 '11 at 3:24setInterval()for delayed recurrence ? – Rahman Kalfane Aug 22 '11 at 3:27