Is there a way to efficiently load/render large html tables without compromising performance, especially in Internet Explorer?
I recently came across a plugin in prototype.js (https://github.com/jbrantly/bigtable/, post: , demo:) that addresses this issue. I am curious if there is a solution using jQuery.
Additionally, I am experimenting with setting fixed widths/heights for cells (both through css and col attribute) to avoid re-layout when the window is resized, while still maintaining responsiveness with media queries.
Are there any other suggestions or strategies for optimizing performance on pages containing large html tables?