How can I append a div
to each tr
?
The following example is not working. It appends a div
to table
, instead of each tr
<table>
<tr repeat="{{ el in elements }}">
<td>{{ el.name }}</td>
<div> This tag I want to append to tr tag </div>
</tr>
</table>