I\'m getting a warning message:
Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user\'s expe
I was plagued by this error message despite using async: true. It turns out the actual problem was using the success method. I changed this to done and warning is gone.
success
done
success: function(response) { ... }
replaced with:
done: function(response) { ... }