I am getting this warning (Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience) while sending request through ajax. Jquery is working fine but this warning causing a performance issue in my website.
Jquery Code
$.ajax({
url: "www.testproject.com/doubt-solving",
type: 'POST',
success: function(result){
$('#my-content-div').css('text-align','none');
$("#my-content-div").html(result.html);
}});