Skip to content

Instantly share code, notes, and snippets.

@rvizena
Last active May 24, 2022 22:51
Show Gist options
  • Save rvizena/30953ba969696197049d5254c2600adb to your computer and use it in GitHub Desktop.
Save rvizena/30953ba969696197049d5254c2600adb to your computer and use it in GitHub Desktop.
Stop Bootstrap carousel from automatically sliding in mobile
$(document).ready(function(){
if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
$('.carousel-div').attr('data-interval', 'false');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment