I\'m having an issue with my jQuery slideshow and I can\'t seem to figure it out. During the transition of images the slideshow will flash white instead of nicely fading int
You can try to use the delay function which works (only) with jQuery animations.
$('#slideshow img:first').fadeOut(1000).next().delay(1000).fadeIn(1000).end().appendTo('#slideshow');
But the best way if you use the provided callbacks as stated by other commenters here.