Following example construct:
function b(){
$('#a').on('blur', function(){
console.log('blur');
});
}
function c(){
$('#a').trigger('blur');
//pseudo: e.g. reading value from #a
}
b();
c();
Now my Question is, will a call to trigger execute the callback synchronously and then jump back to function "c" stack ? Or is it possible that some code after "trigger" in stack c could be executed before the callback (async operation) ?