User1024191908 posted
I have an jquery.ajax call and set the Async : true to make it asynchronously.
in the success there is a line using jquery.append(data) and I am pretty sure it is being executed SYNCHRONOUSLY.
how can I make it asynchronously? because I get an error of :
"Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check
https://xhr.spec.whatwg.o"
thanks in advance.