I am having trouble with the carousel when adding slides. Any slide I add with js has no click functionality in the carousel... I can't click on the thumbs of the carousel to 'go to' that image.
And an example of me adding a slide with js (ajax) :
//add the slide
slider.addSlide(''+
'<li class="slides-content" data-id="'+value.screenshot_id+'">'+
'<img src="/showimage.php?show='+value.image_filename+'" title="'+value.window_title+'" alt="">'+
'</li>');
//add the slide
slider2.addSlide(''+
'<li data-id="'+value.screenshot_id+'">'+
'<img src="/showimage.php?show='+value.image_filename+'" title="'+value.window_title+'" alt="">'+
'</li>');
//correct the count
$(".slide-total-slides").text(" of "+slider.count);
Everything works as it should except you can't click on any of the carousel images except the first one that is loaded with the page... any that are added with js have no click functionality.
I am having trouble with the carousel when adding slides. Any slide I add with js has no click functionality in the carousel... I can't click on the thumbs of the carousel to 'go to' that image.
And an example of me adding a slide with js (ajax) :
Everything works as it should except you can't click on any of the carousel images except the first one that is loaded with the page... any that are added with js have no click functionality.
Any ideas?