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