para cada clase de bucle jQuery
$('.testimonial').each(function(i, obj) {
//test
});
Better Bird
$('.testimonial').each(function(i, obj) {
//test
});
var slides = document.getElementsByClassName("slide");
for (var i = 0; i < slides.length; i++) {
Distribute(slides.item(i));
}
$( "li" ).each(function( index ) {
console.log( index + ": " + $( this ).text() );
});
$('.testimonial').each(function(){
//if statement here
// use $(this) to reference the current div in the loop
//you can try something like...
if(condition){
}
});