I have a JSON array coming in from the server with an array of 200 objects each containing another 10 objects that I want to display in a table format. At first I was creati
I suggest you to use DocumentFragment and use native javascript for this kind of massive DOM manipulation. I prepared an example, you can check it here.
var fragment = document.createDocumentFragment(),
tr, td, i, il, key;
for(i=0,il=data.length;i