Could someone point out why this script works only on firefox and not in any other browsers? Chrome's console showed nothing wrong. Same for firefox's ofc. Any suggestions? Thanks in advance!
jQuery.noConflict();
jQuery(document).ready(function(){
function wrapr(){
var min=1;
var max=5;
var bd = jQuery('body.home');
function bg(){
if(min < max){
bd.css('background-image','url(http://sitename/templates/rt_gantry/images/body/'+min+'.jpg');
min++;
}
else if(min = max){
min=1;
}
}
setInterval(bg,9000);
}
wrapr();
});
bdtojQuery('body')? You can only have onebodyelement, so selecting based on class isn't necessary, and that might be screwing with browsers that don't expect it. Also, FYI your code will display the last image twice as long as the rest. – Ryan P May 15 '12 at 18:39