DOM: Работаем со строками и ячейками таблицы
http://code.google.com/p/trimpath/wi...criptTemplates
$('table').replaceWith((
'<table>'+
'<tr>'+
'<th>Название'+
'<th>Размер диагонали'+
'{for goods as a}'+
'<tr>'+
'<td>${a.name}'+
'<td>${a.size}'+
'{/for}'+
'</table>'
).process(data) );