How to speed up the reading of innerHTML in IE8?
- by Dennis Cheung
I am using JQuery with the DataTable plugin, and now I have a big performnce issue on the following line.
aLocalData[jInner] = nTds[j].innerHTML; // jquery.dataTables.js:2220
I have a ajax call, and result string in HTML format. I convert them into HTML nodes, and that part is ok.
var $result = $('<div/>').html(result).find("*:first");
//…