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.
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.
Try:
$('.carousel').carousel({
pause: true,
interval: false
});