JSFiddle - React, Tailwind, and code Playground

by ipr101

HTML

<table>
    <tr>
        <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>
    </tr>
    <tr>
        <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>
    </tr>
</table>

CSS

.someclass {color:red}

JavaScript

$('a').hover(function() {
    $(this).parent().next().addClass('someclass');
}, function() {
    $(this).parent().next().removeClass('someclass');
});