Допустим, «ID» вашей таблицы - «myTable».
$.getJSON('http://yourpageurl.com',
function(data)
{
//Let's say you want to modify all the cells in the first row.
$('#myTable tr:first td')
.each(
function()
{
//'this' represens the cell in the first row.
$(this).html('changing cell value');
}
);
//If you want to access all cells of all the rows, replace
//#myTable tr:first td with
//'#myTable td'
}
);
EDIT:
Если вы знаете «id» для своего tr, вы можете заменить
'# myTable tr: first td' селектор с '# <>' замените <> на ваш идентификатор TR.