'jQuery Performance Long Running Tasks

                        var data = response.Data;
                        var table = $('#' + tableId).dataTable();
                        table.fnClearTable();
                        $.each(data, function (index, column)  {
                     
                            table.fnAddData({
                                "data": column,
                                "0": "<input type='checkbox' value=" + column.BoxId + " />",
                                "1": column.Sequence,
                                "2": column.FF,
                            });
                        });

This is failing me, it makes my website freeze, I handle a lot of data.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source