http://www.lunatestsite.co.uk/products/lifestation
Cannot for the life of me fix this. Only in IE8 so far. I had the same issue on the homepage cycle, but managed to
It sounds like the images are still loading.
Try this...
$(window).load(function() {
$('#product-images, #front-slides').cycle({
timeout: '7000',
next: '#next',
prev: '#prev',
pager: '#pager',
pagerAnchorBuilder: function(idx, el) {
return '';
}
});
});
window.load() will fire after the DOM and the page's images have loaded, where document.ready() only fires after the DOM has loaded.