JSFiddle - React, Tailwind, and code Playground

HTML

<table><tr id="files"><td></td></tr></table>

JavaScript

var el = $("#files");
console.log("before: " + window.getComputedStyle(el.get(0)).display);
el.parent().detach();
console.log("after: " + window.getComputedStyle(el.get(0)).display);