jquery loop through each element 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
});
Example 3: jquery foreach
$.each( obj, function( key, value ) {
alert( key + ": " + value );
});