I\'m trying to add multiple swipers (http://www.idangero.us/swiper/) on my site. I want to add the swipers dynamic so i use the same class for every swiper. Each swiper look
you need to do something like:
$('.swiper-container').each(function(){
new Swiper($(this), {
pagination: $(this).find('.swiper-pagination'),
paginationClickable: $(this).find('.swiper-pagination'),
nextButton: $(this).find('.swiper-button-next'),
prevButton: $(this).find('.swiper-button-prev'),
loop: true
});
});