pincodes = []; codefieldelements = jQuery(".wpc-condition-wrap .wpc-value").slice(1); codefieldelements.each(function(index) { jQuery(this).val(pincodes[index]) }); code example
Example: for each jquery
$('.testimonial').each(function(){
//if statement here
// use $(this) to reference the current div in the loop
//you can try something like...
if(condition){
}
});