I have a table with a cell. The cell's ID is created using a unique name
that
is held in m_UniqueCellNam e and the cell is created like so...
document.write( "<TD ID="' + m_UniqueCellNam e + '"></TD>" );
How can I programmaticall y modify the contents of the cell whose name
is held within m_UniqueCellNam e? The variable will get passed around
to other functions, but try as I might,
myid = document.getEle mentById( m_UniqueCellNam e );
document.all.my id.innerHTML = "Something! ";
simply doesn't work. What is it that I'm missing? Any help would be
greatly appreciated.
that
is held in m_UniqueCellNam e and the cell is created like so...
document.write( "<TD ID="' + m_UniqueCellNam e + '"></TD>" );
How can I programmaticall y modify the contents of the cell whose name
is held within m_UniqueCellNam e? The variable will get passed around
to other functions, but try as I might,
myid = document.getEle mentById( m_UniqueCellNam e );
document.all.my id.innerHTML = "Something! ";
simply doesn't work. What is it that I'm missing? Any help would be
greatly appreciated.
Comment