i have about 30 span tags in my html
<span class='date'>1</span>
<span class='date'>1</span>
<span class='date'>1</span>
<span class='date'>1</span>
<span class='date'>1</span>
<span class='date'>1</span>
I made an ajax call when returns a json response and am trying to select all the span's and then look through them from first to last and populate the numbers as i receive it from the json. Below is my jquery code
// calendar filler
var filler = $('#'+CalId).find('span[class~="date"]').first()
$.each(data.days[0], function(index, week) {
$.each(week, function(index, days) {
$.each(days, function(index, day, current, entry) {
filler.html(day);
filler=filler.next();
console.log(filler.val() + ' => '+ index);
})
})
})
for some reason the filler.html is populating the values in the 4th loop and its skipping sometimes. I think it might not be working synchronous, i think the $.each is executing the look before filler trigger the next(). Any idea how i can overcome this issue?
regards,