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
There are two ways.
In your HTML code, you need to use data-interval="false"
If you want to do with the help of Jquery then you need to add.
//document ready
$(document).ready(function(){
//Event for pushed the video
$('#your-carousel-id').carousel({
pause: true,
interval: false
});
});
Thanks :)