JSFiddle - React, Tailwind, and code Playground
by Johan Muller
HTML
<a class="link" href="#">create<a/>
<div class="formbox"></div>
JavaScript
$(document).on('submit','#FeedbackForm',function(e){
alert('ye');
return false;
});
$(document).on('click','.link',function(e){
e.preventDefault();
$('.formbox').html('<form id="FeedbackForm"><input /><input type="submit" /></form>');
});