jquery, javascript and callback timing
- by Blankman
var blah = Some.Thing(data, function(a,b) {
// code here
});
Some.Thing = function(data, callback) {
var a = Other.Thing(data, function() {
});
};
My question is, will the part that says //code here fire ONLY after everything else and their callbacks fire?
The //code here part seems to fire, and there seems to be some timing issue.