I am using Jquery Cycle to scroll images, i am currently using $(document).ready, the problem is the images are half loaded and the cycle effect starts,
$(document).ready(function(){
$('#gallery').cycle({
fx: 'scrollLeft,scrollLeft,scrollLeft,scrollLeft' ,
speed: 1000,
pause: 3
});
});
Should i use $(window).load which waits for all images to load before starting the effects, The problem with this is images will be stacked on top of the other.
So Kindly suggest a solution to my problem