for each loop class jquery

JavaScript
$( "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){
    }
 });var slides = document.getElementsByClassName("slide");
for (var i = 0; i < slides.length; i++) {
   Distribute(slides.item(i));
}$('.testimonial').each(function(i, obj) {
    //test
});

Source

Also in JavaScript: