How to BLOCK several asynchronous gets
Hello,
I've tried a couple different ways, and the best case that I had was a series of nested $.get(...).then(...) callbacks. This works, to a point, but leaves me with a JavaScript stack overflow on the client side, best guess; the ASP.NET server side is "happy", at any rate, but this is useless unless the client side can digest the results without stack overflow.
I need to know how to BLOCK each $.when(), or $.get(), might be better, or if I can simply block and wait for the done handler to be truly done, better still.
I'm sure it's a simple callback, but the reference escapes me.
Thanks!