loop through th jquery code example
Example 1: jquery loop over elements
$( "li" ).each(function( index ) {
console.log( index + ": " + $( this ).text() );
});
Example 2: for each loop class jquery
$('.testimonial').each(function(i, obj) {
//test
});