For some reason my values are not being stored in the array:
var req = new Array();
$.get('./ajax/get_cat_info.php?cid=' +cid, function(data, textStatus) {
var count = 0;
$.each(data, function(key, val) {
$('#' + key).show();
if(val == 1) {
req[count] = key;
count = count + 1;
//var arLen=req.length;
//alert('l: ' + arLen); // this works though
}
});
}, 'json');
var arLen=req.length;
alert('l: ' + arLen);
I get alerted "l: 0" at the end. If I uncomment the line alert in the IF statement, it alerts on each one, then still alerts 0.
req.push(key)instead ofreq[count] = key;? – Joseph Marikle Aug 13 '11 at 23:15$.getstatement executes immediately, ergo, before the callback function because the callback is asynchronous. Your array is OK, but you can't use it before the callback has finished. Btw, this is a common mistake. – Šime Vidas Aug 13 '11 at 23:15