Hyperlink on more tds
Hyperlink on more tds
Hello I need your help to set a hyperlink on multiple columns in a table html.
Let me explain: The following code I want to set a hyperlink from the second to the fourth column of the table.
<tr>
<td>1</td>
<td><a href="#">Name 1</a></td>
<td>500,00</td>
<td>50</td>
<td>22</td>
</tr>
In this way it is only set for the second column. How do I set until the fourth column?
Thank you in advance
Tegatti