This is code for a faded slideshow. Is there a way to repeat or loop this queue? To start again on this top code $("#page2_image").hide();
Here’s the code in jQuery:
$(document).ready(function(){
$("#page2_image").hide();
$("#page3_image").hide();
$("#page1_image").fadeOut(10000);
$("#page2_image").fadeIn(10000).fadeOut(10000);
$("#page3_image").delay(10000).fadeIn(10000);
});
Thank you for your help!
you can use the callback of
fadeIn()you can also try a similar approach here