Pregunta

I have to use multiple bootstrap carousel in single page.If i am using different id for each carousel its possible. But I want use same class or id..it is possible?I have tried like this $('.myCarousel').carousel();

¿Fue útil?

Solución

Try this:

$(document).ready(function() {
  $('.carousel').each(function(){
      $(this).carousel({
          interval: 3000
      });
   });
});

http://jsfiddle.net/7DLyk/4/

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top