<table id="tab" border="1">
<tr>
<td>One</td><td>123</td><td></td><td>32</td>
</tr>
<tr>
<td>Two</td><td>52</td><td></td><td>53</td>
</tr>
<tr>
<td>Three</td><td>234</td><td></td><td>56</td>
</tr>
</table>
$('#tab').click(function(){
sum();
})
function sum(){
//????
}
How is the best method for sum column from second and fourth TD and fill in to third TD for each TR?