JSFiddle - React, Tailwind, and code Playground

by Norlihazmey Ghazali

HTML

<table>
    <tr>
    <td>abc</td>
    <td>Education</td>
    <td>abc customer</td>
    <td>123</td>
    <td>[email protected]</td>
    <td>
        <button class="edit_record">Edit</button>
    </td>
</tr>
</table>

JavaScript

$(function () {
    $('body').on('click', '.edit_record', function (e) {
        $.each($(this).closest('tr').find('td'), function (i, obj) {
            console.log(i);
            if ( i == 5 ) {
                $(obj).remove();
            }


        });

    });

});