Per the docs, this should be enough to run Twitter Bootstrap:
<div class="carousel">
<div class="carousel-inner">
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
</div>
$('.carousel').carousel()
I also included jquery.transitions plugin so I assumed it would degrade in older browsers.
Unfortunately, the slides don’t move at all in Firefox 3.6. Why?
It looks like you need to add
slideclass to your carousel for thesimpleversion to work:Sample carousel has it, and there is a check in the code:
Kind of strange they didn’t mention it, though.