update cell value in a specific column
update cell value in a specific column

Hi guys,
Is ther a better/correct way to achive the following
$('#results tbody tr td:nth-child(2)').each( function(){
$(this).html('new value');
});
objective is to update all values in a specific column
This discussion has been closed.
Answers
actually here is how I think...