Try simplifying your code to see if there is a synchronization problem, for example:
$(document).ready(function() { $('#icecarousel119').flexslider({ selector: ".slides > div", animation: "slide", direction: "horizontal", itemWidth:90, slideshowSpeed:5000, animationspeed:600, itemMargin:0, minItems:1, maxItems:0, move: 0, slideshow: false, directionNav: true, controlNav: true, start: function(slider){ $('body').removeClass('loading'); } }); });
});
In addition, flexslider examples use a class, not an identifier (although I don't think this causes a problem).
source share