views:

109

answers:

1

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.

This Doesn't Works (When used Refresh CTRL+F5)

any help?

A: 

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);
Nick Craver
thx, it's working now.
Prakash