Synchronous AJAX

  • Thread starter Thread starter qasim
  • Start date Start date
Q

qasim

Hi Guys

I send different AJAX calls to server one after another. Is it possible that
to make these calls as Synchronous?

Any kind of replies are welcomed

Qasim Zeeshan
Software Engineer
 
yes if you call xlmhttprequest directly. but its a bad idea, as it will
lockup the ui.

-- bruce (sqlwork.com)
 
qasim said:
Hi Guys

I send different AJAX calls to server one after another. Is it possible
that to make these calls as Synchronous?

Any kind of replies are welcomed

Do you really need to call them synchronously, do you not really mean
sequentially?

Use the callback of the completion of one request to initiate the next
request.
 
Back
Top