Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have this code to populate the option in my select box(i have 7 select box in this page) with json response from the server(ajax)

for (j=1; j <= 7; j++){

            $.getJSON('mobile_json.php', {id:j}, function(data) {
                var select = $('#userAccess' + j);              
                var options = select.attr('options');
                $.each(data, function(index, array) {                   
                    options[array['Id']] = new Option(array['Name']);
                });  
            });  
    }   

The problem is after the calling to the ajax, the j equal to 8 , what i want is when the function deal with the json array, is set it to the right select box like : userAccess1 , userAccess2 ... userAccess7,

how can i deal with it.

thanks

share|improve this question

1 Answer

up vote 4 down vote accepted

It is because you are creating closures in a loop. This helped me to understand it better (especially example 5).

One way to solve this is to create an anonymous function and execute it immediately :

for (j=1; j <= 7; j++){
    (function(index) {
        $.getJSON('mobile_json.php', {id:index}, function(data) {
            var select = $('#userAccess' + index);              
            var options = select.attr('options');
            $.each(data, function(index, array) {                   
                options[array['Id']] = new Option(array['Name']);
            });  
        });
     })(j)
 }  

This "captures" the current value of j. If you don't do this, by the time the closure (the callback function to the Ajax request) is executed, the loop is already finished, leaving j with the value of 8.
That's the tricky thing about closures :)

share|improve this answer
I read about this exact thing in the Crockford book. :) – Jacob Relkin Oct 17 '10 at 6:51
thank you very much – Haim Evgi Oct 17 '10 at 7:05

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.