I was iterating through a table I had created and getting the first cell from each row. Based on what type the cell was, would do different things. Example:
if(cCell.type=='th' && cCell.parent.next.Cells[0].type == 'th'){
cCell.parent.parent.controls.remove(cCell.parent);
}
stating, if both the current cell and the cell below it are th, then to delete current cells row.
Tom Ingram seems to be correct…
example table used…