I need to change the eq(0) and eq(6) values to itemRow and itemCol values.
var itemRow = element.parentNode.parentNode.rowIndex;
var itemCol = element.parentNode.cellIndex;
$('#tblItem tbody tr:eq(0) td:eq(6)').text("0.00");
This is my current code but it's not working:
$('#tblItem tbody tr:eq(' + itemRow + ') td:eq(' + itemCol + 1 + ')').text("0.00");