I\'m using bootstrap by Twitter\'s carousel (latest version) and I\'ve got it working - except that it doesn\'t begin to automatically slide. It works well after you\'ve cli
Sometimes using the wrong version of JQuery can effect the actions of the Twitters Boostrap carousel. They are currently running v1.7.1, if your using different it may be causing the errors.
If your not running v1.7.1 you can download it from here:
http://code.jquery.com/jquery-1.7.1.min.js
Also make sure that your code is wrapped in a document ready :
$(document).ready(function () {
// code here
});