$('table').find("tr:not('firs')").each(function () { var td = $(this).find("td"); td.last().text(parseFloat(td.first().text()) * parseFloat(td.eq(1).text())); });