[jQuery] Fastest method to create table rows

[jQuery] Fastest method to create table rows


I'm working on a project that makes a web service call and pulls back
data. Sometimes that data can be 1,000ish rows. What is the fastest
way that I can create those rows? Right now I'm just doing string
concatenation to make HTML and passing that to the .append method. I
read the other day where someone(Klaus?) said that array.join was a
faster way to do string concatenation.
I'd like to avoid the string concats all together if there is a faster
method. I'm just poking around for ideas.
Thanks
Josh