Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save omermindivanli/c03611f9574ad148c164cedc59d7369d to your computer and use it in GitHub Desktop.
Save omermindivanli/c03611f9574ad148c164cedc59d7369d to your computer and use it in GitHub Desktop.
That is a solution of a common Bootstrap Carousel Auto-Start Problem on Client-Side Rendering ReactJS
<script>
//Carousel Client Side Auto-Start-Script
setInterval(function () {
$('.carousel').carousel('next');
}, 2000);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment