Javascript - Get callback info back to original calling function.
Posted
by Steve
on Stack Overflow
See other posts from Stack Overflow
or by Steve
Published on 2010-05-07T14:31:17Z
Indexed on
2010/05/07
14:38 UTC
Read the original article
Hit count: 153
Let's say you have a Javascript function that calls a web service method. So that webservice completes and calls a callback function, which has the result.
How do I get that result back into the original function that called the web service method? Essentially, I'm trying to "synchronize" an asynchronous call.
© Stack Overflow or respective owner