I integrated jCarousel into my asp.net
page but it's always showing only 3 images at a time. If I need to show 10 images at a time, then what should I change in the code?
Here is my little snippet:
jQuery(document).ready(function () {
jQuery('#mycarousel').jcarousel({
size:5,
itemLoadCallback: mycarousel_itemLoadCallback
});
});
function mycarousel_getItemHTML(mother) {
var item = "<div>";
item += "<img src='" + mother.Image + "' width='75' height='75' />";
item += "</div>";
item += "<div>" + mother.Title + "</div>";
return item;
};
Try this
jQuery('#mycarousel').jcarousel({
visible: 3
});