Hi all. I am trying to write something in a specific cell of a table.
I have done something like this write now.
function getCellByRowCol(rowNum, colNum)
{
var tableElem = document.getElementById ('imageBoxTbl');
var rowElem = imageBoxTbl.rows[rowNum];
var tdValue = imageBoxTbl.cells[colNum].innerHTML;
}
What I want to do is, when the user clicks a button, write a text "Finished" in the 2nd row third cell. Can anyone please tell me how to do it.
thanks.
I have done something like this write now.
function getCellByRowCol(rowNum, colNum)
{
var tableElem = document.getElementById ('imageBoxTbl');
var rowElem = imageBoxTbl.rows[rowNum];
var tdValue = imageBoxTbl.cells[colNum].innerHTML;
}
What I want to do is, when the user clicks a button, write a text "Finished" in the 2nd row third cell. Can anyone please tell me how to do it.
thanks.