I have the following html table:
<table>
<tr>
<td> <input> </td>
<td> <input> </td>
<td> <input> </td>
</tr>
<tr>
<td> <input> </td>
<td> <input> </td>
<td> <input> </td>
</tr>
<tr>
<td> <input> </td>
<td> <input> </td>
<td> <input> </td>
</tr>
</table>
Instead, I would like to create this table only with javascript. I have read the following post. However, I would like that inside every <td>
there is an <input>
(as shown on the code provided). Any guidance or help would be appreciated.
Thanks!