JQuery Loop wszystkie elementy z klasą
$('.testimonial').each(function(i, obj) {
//test
});
Better Bird
$('.testimonial').each(function(i, obj) {
//test
});
$( "li" ).each(function( index ) {
console.log( index + ": " + $( this ).text() );
});