$( "li" ).each(function( index ) {
console.log( index + ": " + $( this ).text() );
});
var arr=[1,2,3];
$.each( arr, function( index, value ){
console.log(value);
});
//For getting Elements
$( "li" ).each(function() {
console.log( $(this).text());
});
//Array
$.each( arr, function( index, value ){
sum += value;
});
//Object
$.each( obj, function( key, value ) {
sum += value;
});
1
2
3
$.each([ 52, 97 ], function( index, value ) {
alert( index + ": " + value );
});
$('.testimonial').each(function(){
//if statement here
// use $(this) to reference the current div in the loop
//you can try something like...
if(condition){
}
});
$( "li" ).each(function() {
$( this ).addClass( "foo" );
});
$(querySelector).each(( index, value ) => {
// do stuff
});
1
2
3
$( "li" ).each(function( index ) {
console.log( index + ": " + $( this ).text() );
});
$(".demo").each(function() { // parse each .demo element
document.write($(this).text() + "
"); // output their text
});