jquery iterate over elements with class code example
Example 1: jquery loop through li elements
//looping through list elements in jquery
$('#myUlID li').each(function() {
console.log($(this));
})
Example 2: for each loop class jquery
$('.testimonial').each(function(i, obj) {
//test
});