jquery foreach children code example
Example 1: jquery loop through each child element
$('#mydiv').children('input').each(function () {
alert(this.value); // "this" is the current element in the loop
});
Example 2: jquery each
//Array
$.each( arr, function( index, value ){
sum += value;
});
//Object
$.each( obj, function( key, value ) {
sum += value;
});
Example 3: jquery foreach
$.each( obj, function( key, value ) {
alert( key + ": " + value );
});