xxxxxxxxxx
//Array
$.each( arr, function( index, value ){
sum += value;
});
//Object
$.each( obj, function( key, value ) {
sum += value;
});
xxxxxxxxxx
$( "li" ).each(function( index ) {
console.log( index + ": " + $( this ).text() );
});
xxxxxxxxxx
//loops through the 'substr' array and performs an action
//for each item inside of it
var substr = [1, 2, 3, 4];
$.each(substr , function(index, val) {
console.log(index, val)
});
xxxxxxxxxx
var arr=[1,2,3];
$.each( arr, function( index, value ){
console.log(value);
});
//For getting Elements
$( "li" ).each(function() {
console.log( $(this).text());
});
xxxxxxxxxx
$('.testimonial').each(function(){
//if statement here
// use $(this) to reference the current div in the loop
//you can try something like...
if(condition){
}
});
xxxxxxxxxx
$.each(collection, function(index, element) {
// Do something with each element
});
xxxxxxxxxx
1
2
3
$( "li" ).each(function( index ) {
console.log( index + ": " + $( this ).text() );
});
xxxxxxxxxx
$( "div" ).each(function( index ) {
//console.log( index )
modal_desc = $(this).length;
if(modal_desc > 20){
//code
}
});