Table creation performance evaluation
Comparing two alternatives:
Using
jQuery
html creator and append, e.g.
$("<tr>").append(...)
Using
string
concatenation and html, e.g.
html+="<tr>" + ...
and
$("#target").html(html)