Hello --
I am using jcarousel for my site and was experiencing a flicker issue
that has been discussed earlier on this forum. I applied the fix for
it:
function mycarousel_itemVisibleOutCallback(carousel, item, i, state,
evt)
{
setTimeout(function() { carousel.remove(i); }, 20);
};
however, now i am experiencing a new issue and was wondering if anyone
knows how to resolve?
Now, when i press the "next" button (to progress the carousel forward)
really quickly (basically a quick double click), the next image doesnt
appear. And then there is a "blank" space in my carousel for where it
would have been.
Basically if i usually have 5 images in my carousel and i do this
double click thing, instead of progressing by one, the carousel just
displays 4 images and if i do the double click again it will display 3
and so on...
Any ideas?
Thanks!