Hi all, just wanted to verify if this is the correct code for FF. I'm trying to find a cell at column iCellIndex in the first row of the table. I get that oHeaderCell is undefined. Thanks in advance, I must be too tired to catch any syntax errors, but here it is:
Code:
function TableResize_GetFirstColumnCell(objTable, iCellIndex) { var oHeaderCell = objTable.rows[0].cells[iCellIndex]; return oHeaderCell; }
Comment