Skip to content

Instantly share code, notes, and snippets.

@morontt
Created February 24, 2015 12:36
Show Gist options
  • Select an option

  • Save morontt/75e2252ba984e1ff78c6 to your computer and use it in GitHub Desktop.

Select an option

Save morontt/75e2252ba984e1ff78c6 to your computer and use it in GitHub Desktop.
for and callback
var t = [];
for (var i = 0; i < 43; i++) {
(function (idx) {
$.ajax({
data: data,
success: function (rez) {
t[idx] = rez;
}
});
})(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment