Why use plugins? use this single insert (I just split it into 3 lines for readability)
see demo
Your HTML should be something like this
HTML
<div class="yourContainer">
<div>some html</div>
<div>other html</div>
</div>
Js / jquery
$(function(){
$('.yourContainer div:gt(0)').hide();
setInterval(function(){$('.yourContainer :first-child').fadeOut().next().fadeIn().end().appendTo('.yourContainer');}, 3000);
});
CSS (option = makes the transition smoother)
.yourContainer{ position:relative;}
.yourContainer div{ position:absolute; hight:300px; width:300px; background:red; }
source
share