Ken
0
Q:

jquery loop through array

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() );
});
2
//Array
$.each( arr, function( index, value ){
    sum += value;
});

//Object
$.each( obj, function( key, value ) {
    sum += value;
});
16
$.each( obj, function( key, value ) {
  alert( key + ": " + value );
});
3
$.each(largeJSONobject.ReleatedDoc, function (index,value) {
    $('select.mrdDisplayBox').addOption(value.Id, value.Id + ' - ' + value.Number, false);
});
1
$( "li" ).each( function( index, element ){
    console.log( $( this ).text() );
});
 
// Logs the following:
// Link 1
// Link 2
// Link 3
0
$.each( function(key value){$get()}
1

New to Communities?

Join the community