jquery class selector specific iteration code example
Example 1: jquery each
//Array
$.each( arr, function( index, value ){
sum += value;
});
//Object
$.each( obj, function( key, value ) {
sum += value;
});
Example 2: for each loop class jquery
$('.testimonial').each(function(i, obj) {
//test
});