Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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,

share|improve this question
1  
I would try using a traditional for loop. $.each does not behave as expected sometimes. – citizen conn Aug 2 '11 at 22:53
I would second that also you can hit some performance snags using $.each rather than traditional for's – scrappedcola Aug 2 '11 at 22:54
i just found a solution for this, instead of the for loop I went on with using the deferred objects $.when(condition).then(execute_operation). It helped me a lot – Mo J. Mughrabi Aug 3 '11 at 19:58

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.