JSFiddle - React, Tailwind, and code Playground
by calder12
HTML
<form name="blankett" id="blankett_form">
<input type="submit"/>
<div id="formsubmit"></div>
JavaScript
$('#blankett_form').submit(function() {
var table = '<table class="table table-hover table-bordered"><thead><tr> <td>blanketter.</td><td>datum tillagt.</td></tr></thead></table>'
$(table).appendTo('#formsubmit');
return false;
});