0

Bootstrap carousel still not works after trying all methods mentioned in below post. Are there any other solutions to resolve this problem? Please help Thanks!

Carousel is not sliding until first click on arrows. I would like to start as soon as page loads.

I have tried all options mentioned in the below post.

How can I make the Bootstrap js carousel automatically cycle as soon as the page loads?

$(document).ready(function () {
    $('.myCarousel').carousel({
    interval: 1000
});

 $('.myCarousel').carousel('cycle');

});

Community
  • 1
  • 1
user2088016
  • 99
  • 2
  • 2
  • 9

1 Answers1

0

I found an answer. Here is the solution.

  $(document).ready(function () {

  $('#myCarousel').carousel(
   {interval: 1000  }
  );
  $('#myCarousel').carousel().next();

}); 
user2088016
  • 99
  • 2
  • 2
  • 9