Q:

foreach jquery

var arr = ['one','two','three','four','five'];
$.each(arr, function(index, value){
	console.log('The value at arr[' + index + '] is: ' + value);
});
13
$( "li" ).each(function( index ) {
  console.log( index + ": " + $( this ).text() );
});
12
//looping through list elements in jquery
$('#myUlID li').each(function() {
  console.log($(this));
})
3
//Array
$.each( arr, function( index, value ){
    sum += value;
});

//Object
$.each( obj, function( key, value ) {
    sum += value;
});
16
$('.testimonial').each(function(){
    //if statement here 
    // use $(this) to reference the current div in the loop
    //you can try something like...
    if(condition){
    }
 });
8
$.each( obj, function( key, value ) {
  alert( key + ": " + value );
});
3
$( "li" ).each(function( index ) {
  console.log( index + ": " + $( this ).text() );
});
2
var i;
for (i = 0; i < cars.length; i++) { 
  text += cars[i] + "<br>";
 }
2
// OBJECTS
const obj = {
  one: 1,
  two: 2,
  three: 3,
  four: 4,
  five: 5
};

$.each(obj, function(key, value) {
  console.log(value);
});

// Outputs: 1 2 3 4 5
2

New to Communities?

Join the community