1You just need to add one more attribute to your DIV tag which is
2 `data-interval="false"`
3 So <!--Carousel Wrapper-->
4 <div id="multi-item-example" class="carousel slide carousel-multi-item" data-ride="carousel" data-interval="false">
5
6Note* : no need to touch JS!
7
8<------------------ OR ---------------------->
9
10$('.carousel').carousel({
11 interval: false,
12});