I've been trying to figure out how to adjust the interval time on a Bootstrap carousel. I know you can set it initially using:
$('.carousel').carousel({interval: 1000 });
But what if I want the interval to change to 2 seconds after, let's say, 10 seconds?
setTimeout(function(){ }, 10000);
Has anyone tried this before and have any insights?