for each element with class jquery code example

Example 1: jquery loop over elements

$( "li" ).each(function( index ) {
  console.log( index + ": " + $( this ).text() );
});

Example 2: jquery loop through li elements

//looping through list elements in jquery
$('#myUlID li').each(function() {
  console.log($(this));
})

Example 3: for each loop class jquery

$('.testimonial').each(function(i, obj) {
    //test
});

Example 4: javascrip for each element of class

var slides = document.getElementsByClassName("slide");
for (var i = 0; i < slides.length; i++) {
   Distribute(slides.item(i));
}