in my code i am creating a ul li for the jcarousel ie its a list of data(ex. list of photo)
when the photo count is more than say 4 , the jcarousel enables horizontal scrolling so as to see next 4 photos .
PROBLEM: is when i run the code in chrome the horizontal scrolls remain disabled even if number of photos is more than 4, in other browsers it works perfectly..
heres the code which imports jquery file:
function SetCarousel() {
$.getScript('<%=Html.LibUrl("jplugins/jquery.jcarousel.pack.js")%>',
function(result)
{
jQuery('#CarouselUL').jcarousel({
visible: 4
});
});
}
i have tried refering .js file @ top of page(aspx) didn't work ..even made it worse
pls help