Disabled click in bootstrap carousel-indicators itens

I need to disable clicks on carousel-Indicators items, they serve as somenta view.

Image carousel

<ol class="carousel-indicators indicatorsNumber">
  <li data-target="#carouselCont" data-slide-to="0" class="myCarousel-target btn-default active">1</li>
  <li data-target="#carouselCont" data-slide-to="1" class="myCarousel-target btn-default">2</li>
  <li data-target="#carouselCont" data-slide-to="2" class="myCarousel-target btn-default">3</li>
  <li data-target="#carouselCont" data-slide-to="3" class="myCarousel-target btn-default">4</li>
</ol>

Upvotes: 0

Views: 1148

Answers (1)

Sam Battat
Sam Battat

Reputation: 5745

Just remove the data-slide-to this will not allow the user to click them, they will serve as an indicator only.

DEMO: http://jsfiddle.net/qh690mk8/

Upvotes: 2

Related Questions