I am looking for best practice to use jquery loop.
I have a jquery loop, like this:
$.each(rows, function(){
var rowClass = $.trim(this);
$('table.' + o.MainTableClass).append('<tr class="'+rowClass+'" />');
$('.'+rowClass).find('.ItemRow').each(function(){
var date = $(this).find('span.Date').text().split(o.dateSpliter).pop();
if($.inArray(date,usedYears)==-1)
{
usedYears.push(date);
}
});
});
The idea is, that i have to reuse this loop again except this part:
if($.inArray(date,usedYears)==-1)
{
usedYears.push(date);
}
I mean pretty much everything what is in second loop. I can just "copy/paste" an use the same loop again, but I am feeling that it is not the best practice to go this way.
Maybe I can cash this loop, or drop into some function, what do you suggest me to use in this case ?
Thanks