I don’t know how can I code for the jquery cycle plugin.
cause this is working when the images are loaded previously
$('#eventPic').cycle({
prev: '#previousButton',
next: '#nextButton',
timeout: 0
});
but when the images are updated via ajax then it’s not working
please help
here is the code
Dave
The cycle plugin initializes when you call it. If you are loading images after it has been initialized then it is not going to have any idea that they exist. Perhaps in your ajax callback you should instantiate the cycle call. If you provide your html/ajax request someone may be able to give you more feedback.