I am trying to create a carousel effect that automatically cycles through each photo every 3 seconds.
$(".headline_img").each(function(intIndex){ setTimeout($(this).show(),3000); });
Timeout delay does not work.
Shows all images as soon as dom is loaded. This is like ignoring the setTimeout function.
Did I miss something?
Note: I call this using $ (document) .ready, do you think this could affect this?
source share