How to remove the automatic slider from the bootstrap carousel

0

How do I remove the auto slide from the Bootstrap carousel? I have a carousel that is working perfectly, but I need to make it static and only change the images when you click the right or left arrows.

    
asked by anonymous 25.05.2016 / 16:42

1 answer

2

Try:

$('.carousel').carousel({
    pause: true,
    interval: false
});
    
25.05.2016 / 16:47