Q:

jquery loop through each child element

$('#mydiv').children('input').each(function () {
    alert(this.value); // "this" is the current element in the loop
});
1
//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

New to Communities?

Join the community