I have built a bootstrap video carousel. It is working just fine but, the only problem I have is the carousel keeps sliding to the next slide after 5 seconds. How do I make it s
To stop the autoplay is by just removing the attribute data-ride=”carousel” from the htmlcode
....
There is another way to stop autoplay just add below code in your js file
$(window).load(function() { $('.carousel').carousel('pause'); });