jquery synchronous AJAX request

How to make synchronous ajax request using jquery Bydefault jquery ajax request is asynchronouse means execution of next code is continue whether or not your ajax request is complete or not. Create synchronous ajax request: For creating sync request you can use property async as false Cross-domain requests anddataType: “jsonp” requests do not support synchronous operation. Note that synchronous requests

Read more