Answer the question
In order to leave comments, you need to log in
Why is the screen sticking?
From primer in dock https://getbootstrap.com/docs/3.3/javascript/#carousel
By clicking on
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
function schedule() {
if ( inProgress ) {
if ( document.hidden === false && window.requestAnimationFrame ) {
window.requestAnimationFrame( schedule );
} else {
window.setTimeout( schedule, jQuery.fx.interval );
}
jQuery.fx.tick();
}
}
Answer the question
In order to leave comments, you need to log in
"clicks" because it should be so when you click on the anchor link.
try adding onclick="return false"
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev" onclick="return false">
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question