So what I want to do is remove all of the HTML table tag elements, leaving the link tags alone.
&l
-
2021-01-29 12:21
var $myTable = $('#myTableId'); //Add id="myTableId" to the table you want select
$myTable.replaceWith($myTable.children('a').wrapAll(''));