Using bootstrap.js version 2.02
I\'m trying to get the Twitter Bootstrap Carousel to automatically cycle as soon as someone visits my site. Right now, the auto cycl
Not sure if you got this sorted out, but I was having that problem as well. I resolved it by wrapping the carousel interval setting in a function like this:
!function ($) { $(function() { $('.carousel').carousel({ interval: 3000 }) }); }(window.jQuery);