JSFiddle - React, Tailwind, and code Playground

by Kaleb Hornsby

HTML

<!-- Right-click on the contact table -> click inspect element -->
<!-- Find the table node and right-click -> copy html -->
<!-- paste in this window and click run, -->
<!-- coppy the lower right hand frame into a spreadsheet. -->

JavaScript

$('td.checkbox, td.picture').remove();
$('[onclick]').removeAttr('onclick');
$('tr').append(function(){
    return $('<td />').wrapInner($('div.fcg', this).remove());
});