1
2
3
$.each([ 52, 97 ], function( index, value ) {
alert( index + ": " + value );
});
$('.testimonial').each(function(){
//if statement here
// use $(this) to reference the current div in the loop
//you can try something like...
if(condition){
}
});