How can I dynamically generate an HTML <table> with a variable number of rows?
The number of rows will depend on the number of properties that exist within a Javascript object.
function showTable(trnum) //number of table rows passed in
{
   // how?
   // $("#elem").foo // #elem - element container for table
}

