Hello,
I am trying to change the text of a table cell when only the <table> element has an ID, there are no IDs set on the cells, e.g.
<table id="test">
  <tbody>
    <tr>
      <td>Cell 1</td>
      <td>Cell 2</td>
    </tr>
  </tbody>
</table>
So how do I change the text of the second cell (Cell 2) in Javascript without explicitly specifying an ID for it?
Thanks,
AJ