Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Jquery cycle plugin loading in ajax content Re: Jquery cycle plugin loading in ajax content

#87093
Olly
Member

I have solved it now, the plugin was running before the page had fully loaded,

i simply added this to the code

$(window).bind("load", function() {
$('#slider').cycle({
fx: 'scrollLeft',
cleartype: true,
cleartypeNoBg: true,
pager: '#li-number2',
requeueOnImageNotLoaded: true
});
});