Is there any way to avoid below warning by jQuery?
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.org/.
My code is given below:
var url = '../Order/GetOrderDetails'
$("#divOrder").load(url);
Note: I am using jQuery 2.2.0 version