Question

I am using Jquery's Just Another Carousel plugin and I'm having issues with something which I am not sure and because of this it's not working. I'm using this plugin because I need fixed height rather than fixed width.

any help?

Was it helpful?

Solution

This is a cache timing issue, DOM ready doesn't mean all the images are loaded..and when they're not you see the problem in that page (some of the last images to load get left out).

Instead of this:

$(init); // on DOM load

You should use this, which fires after images are ready:

$(window).load(init);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top