I am using jcarousel, and on window resizing I am getting the error:
jCarousel: No width/height set for items. This will cause an infinite loop. Abo
I've just encountered this problem and neither the above, nor any other solution I found fixed the problem. If anyone's still encountering this I fixed it as follows:
Define the itemFallbackDimension property when you create your jCarousel instance, with it set to either the height or width, depending on whether you're using jCarousel in horizontal or vertical orientation, e.g:
jQuery('#imageScroller').jcarousel({
scroll :1,
itemFallbackDimension:588
});
Hopefully that will help you as it did me.