JSFiddle - React, Tailwind, and code Playground

by afshinprofe

HTML

<table class="table table-bordered table-condensed table-striped">
    <thead>
        <tr>
            <th>Col 1</th>
            <th>Col 2</th>
            <th>Col 3</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td><strong>Data 1</strong></td>
            <td>Data 2</td>
            <td>Data 3</td>
        </tr>
        <tr>
            <td><strong>Data 1</strong></td>
            <td>Data 2</td>
            <td>Data 3</td>
        </tr>
        <tr>
            <td><strong>Data 1</strong></td>
            <td>Data 2</td>
            <td>Data 3</td>
        </tr>
    </tbody>
</table>

JavaScript

$(document).ready(function(){
    $('table.table-striped tr').on('click', function () {
        $('table.table-striped tr td').css('background-color', '#ffffff');
        $(this).find('td').css('background-color', '#ff0000');
        

         // toggleClass doesn't seem to work

     });
 });