How do I create an HTML table cell into which I can enter data by clicking on it?

<table>
<tr><td></td></tr>
</table>

You can just add the contenteditable attribute.

<table contenteditable>
<tr><td>Click to edit content</td></tr>
</table>

It is not clear what it is you need to do. If the answer(s) you get do not help then clarify what you need to do.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.