JSFiddle - React, Tailwind, and code Playground

by shooter

HTML

<table id="options_table"><tr><td>table</td></tr></table>
<span id="afterMe"><a href="#" id="test">test</a></span>

JavaScript

$('#test').click(function() {
    $('#afterMe').after($('#options_table'));
});