view source
jQuery AJAX Success Callback is not Working for JSON data type?
If you are upto fetching some multiple JSON data from the server using jQuery AJAX function and your success callback function is not triggering then try setting async to false. Settting the async to false will force the AJAX call to execute before any other statement executes.
Advertisement