jquery each function for 2 div classes code example
Example: for each jquery
$('.testimonial').each(function(){
//if statement here
// use $(this) to reference the current div in the loop
//you can try something like...
if(condition){
}
});