I
I
Ivan Simonov2018-03-10 18:03:23
css
Ivan Simonov, 2018-03-10 18:03:23

How to hide pagination for bootstrap carousel?

Hello!

Purpose: if slides is less than or equal to 1 - hide pagination for bootstrap 3 carousel,

My code is Fiddle

Tell me why this code does not work + tell me which way to dig
Thanks

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Denis, 2018-03-10
@ivansimonov1984

function carouselHideIndicators() {
    var carouselCardProduct = $('.carousel-inner .item');
    if(carouselCardProduct.length < 2){
    	$('.carousel-indicators').hide();
    }else{
    	$('.carousel-indicators').show();
    }
  }
  $(function() {
  carouselHideIndicators();
  });

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question