carousel won't start automatically
carousel won't start automatically
carousel won't start automatically until I press the arrow (prev or next),
the solution is to a append the below to the carousel div
<script type="text/javascript">
$(document).ready(function() {
$('.carousel').carousel({
interval: 5000,
cycle: true
});
});
</script>
reference: https://github.com/twitter/bootstrap/issues/3528
Comments
Post a Comment