bootstrap 4 stop auto slide
You just need to add one more attribute to your DIV tag which is
`data-interval="false"`
So
Note* : no need to touch JS!
<------------------ OR ---------------------->
$('.carousel').carousel({
interval: false,
});
bootstrap 5 carousel disable autoplay
turn off auto slide bootstrap carousel
$('.carousel').carousel({
interval: false,
});