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
Try this.
$(document).ready(function () { $('.carousel').carousel({interval:5000,pause:false}); });