jquery - Bootstrap Carousel auto cycle not working -
jquery - Bootstrap Carousel auto cycle not working -
i using bootstrap version 3.1.1
i have hidden carousel jquery hide(), when user clicks link on page carousel appears auto cycle doesn't work. works if scroll on page. have added next script doesn't prepare problem.
$('.carousel').carousel({ interval: 3000, cycle: true }); $('.carousel-control.right').trigger('click');
try this
$('.carousel').carousel({ interval: 3000 }); $('.carousel').carousel('cycle'); it should help you
jquery twitter-bootstrap
Comments
Post a Comment