for(int i=0;i<10'i++)
{
AjaxCall();
}
//Issue For loop won't wait for ajax response, it continue and doesn't wait for ajax response.
I want to run loop on the basis of ajax response
{
AjaxCall();
}
//Issue For loop won't wait for ajax response, it continue and doesn't wait for ajax response.
I want to run loop on the basis of ajax response
Comment