Internet Explorer freezes for TR (rows)...

Internet Explorer freezes for TR (rows)...

I have the following code in JqGrid onLoadComplete event. IE freezes and goes into Not Responding for a few seconds to minutes whereas FF/Chrome render it in a jiffy.

            loadComplete: function () {
                jQuery("#list1").trigger("reloadGrid"); // Call to fix client-side sorting

                //Set Tooltips ...
                var ids = "" + $("#list1").getDataIDs();  //list1 is the table name which is also rendered as JqGrid
                var arrIds = ids.split(",");

                for (var intRow = 0; intRow < ids.length; intRow++) {

                    $("#list1").find("#" + intRow).find("td:eq(1)").attr("title",
                                                                         $("#list1").find("#" + intRow).find("td:eq(6)").html());

                    //If little JQuery is more kind enough to understand custom attributes, the following compact trick should work in lieu of each/each nesting above. --LD
                    //$("#list1").find("#" + intRow).find("td [aria-describedby='list1_mysitename']").attr("title", "");
                }