у меня 6 тдс вот так:
<td><a href="#">link</a></td>
<td>Some text here</td>
<td><a href="#">link</a></td>
<td>Some other text here</td>
<td><a href="#">link</a></td>
<td>Some other other text here</td>
И я хотел бы добавить класс после наведения на ссылку на следующий тд. Например. Если я наведу указатель мыши на ссылку со второго тд, у следующего тд будет класс, например active , например
<td><a href="#">link</a></td>
<td>Some text here</td>
<td><a href="#">link</a></td> <!-- hoovering over this link -->
<td class="active">Some other text here</td> <!-- and this td will have class active-->
<td><a href="#">link</a></td>
<td>Some other other text here</td>
Как это сделать?