i am facing performance issue (i.e it is taking more time to load data on screen ) in IE11 .where as in FF its loading quickly . we are using sofea framework and i have found that pagination functionality is taking more time to execute,)
we are using below to append the data to tbody
$('tbody[data-page=' + page + ']', this._table).html(newPages[i].rows);
we tried below using innerHTML
var element = $('tbody[data-page=' + page + ']', this._table);
element.innerHTML = newPages[i].rows;
in debug data is assigning to element.innerHTML but it is not displaying on the screen.
any alternative solution to improve loading performance