jquery $.ajax() issues and concerns

jquery $.ajax() issues and concerns

Hi,

I am using this $.ajax() to the data from webservice(.asmx) . webservice sends me data in html format enclosed as strings.I am just appending the received conten to table.It also contain image tags containing images.

When i browse this page in chrome. Sometime these images are not loading one by one. Its gets loaded once all page async calls have done.

When i browse this page in IE. Browse gets freeze can't do other process. this is happening even though i have set async: true during ajax call. I want some quick fix or solution to this scenario. what might be causing this?

$.ajax({
                 type: "POST",
                 url: "Webservices/myservic.asmx/GetDetails",
                 data: "{ 'DataId': '" + CustomerID + "'  }",
                 contentType: "application/json; charset=utf-8",
                 //dataType: "json",
                 //cache: false,
                 async: true,
                 success: function (msg) {

                     $(row).append(msg.d);

                 },
                 error: function (request, status, error) {
                     alert(request.responseText);
                 }