This is the code I'm using to achieve a simple fade out, fade next in effect.
var fadeLoop = function($el) {
$el.delay( 5000 ).fadeOut(500, function() {
var $next = $el.next();
if ($next.length == 0) {
$next = $el.siblings(":first");
}
$next.fadeIn(500, function() {
fadeLoop($next);
});
});
};
$(document).ready(function(){
$.noConflict();
$(".fade1").siblings().hide();
fadeLoop($(".fade1"));
});
The trouble is, I'm trying to implement this on a Mybb forum which uses jquery 1.8.0. I've tried simply changing the linked JQ version to 1.8.3, which breaks a lot of forum features, so I've come to the conclusion that i simply must re-write this to be compatible with 1.8.0. The problem is, I don't know how to do that. Thanks for anyone who can help me out. I appreciate it.