I'd like to write <td>
tags with JavaSctipt in my HTML code.
I'm building a <table>
in the main code and I'd like to continue it with a <script>
, adding rows in the division.
<body>
<table>
<tr>
<td>First</td>
</tr>
<div id="searchOutput"></div>
<tr>
<td>Last</td>
</tr>
</table>
<script>
document.getElementById("searchOutput").innerHTML = "<tr><td>Middle<td><tr>";
</script>
</body>
The problem is that the <script>
creates another table in a strange way.
Is there a way to add rows without writing all code (including <table>
tags) in the <script>
?
` or `
` and the problem was already there. I also tried to put a `` in a ` ` but the result was always the same.
– Marco Di Francesco Jun 16 '18 at 10:49