jquery ifor each element code example
Example 1: jquery loop through li elements
//looping through list elements in jquery
$('#myUlID li').each(function() {
console.log($(this));
})
Example 2: jquery foreach
$.each( obj, function( key, value ) {
alert( key + ": " + value );
});