A little tip: sometimes you wants to prevent bootstrap carousel from automatically cycling through items when clicking on prev/next buttons and instead, be controlled manually all the time.
Bootstrap version 2.3.2 documentation says:
$('your-carousel').carousel('pause');
Stops the carousel from cycling through items.
Bootstrap documentation is not correct at all, luckily Google came to our rescue, the correct way to prevent from automatically cycling through items when clicking on prev/next buttons is:
$('your-carousel').carousel({ pause: true, interval: false });
Hope you find this information useful!!