jq each loop

JavaScript
$( "li" ).each(function( index ) {
  console.log( index + ": " + $( this ).text() );
});	$( "div" ).each(function( index ) {
		//console.log( index )
	    modal_desc = $(this).length;
	    if(modal_desc > 20){
	    	//code
	    }
	});$( "li" ).each(function( index ) {
  console.log( index + ": " + $( this ).text() );
});

Source

Also in JavaScript: